Skip to content

Commit 1a10ab6

Browse files
committed
up gitignore
1 parent 2dde592 commit 1a10ab6

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
*.jl.*.cov
22
*.jl.cov
33
*.jl.mem
4+
*.gif
5+
*.mp4
6+
*.mo
7+
*.mat
48
/Manifest.toml
59
/docs/build/

docs/src/examples/pendulum.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -186,11 +186,11 @@ W(args...; kwargs...) = Multibody.world
186186
@mtkmodel FurutaPendulum begin
187187
@components begin
188188
world = W()
189-
shoulder_joint = Revolute(n = [0, 1, 0], isroot = true, axisflange = true)
190-
elbow_joint = Revolute(n = [0, 0, 1], isroot = true, axisflange = true, phi0=0.1)
191-
upper_arm = BodyShape(; m = 0.1, isroot = false, r = [0, 0, 0.6], radius=0.04)
192-
lower_arm = BodyShape(; m = 0.1, isroot = false, r = [0, 0.6, 0], radius=0.04)
193-
tip = Body(; m = 0.3, isroot = false)
189+
shoulder_joint = Revolute(n = [0, 1, 0], axisflange = true)
190+
elbow_joint = Revolute(n = [0, 0, 1], axisflange = true, phi0=0.1)
191+
upper_arm = BodyShape(; m = 0.1, r = [0, 0, 0.6], radius=0.04)
192+
lower_arm = BodyShape(; m = 0.1, r = [0, 0.6, 0], radius=0.04)
193+
tip = Body(; m = 0.3)
194194
195195
damper1 = RDamper(d = 0.07)
196196
damper2 = RDamper(d = 0.07)

0 commit comments

Comments
 (0)