Browse Search Popular Register Upload Rules User list Login:
Search:
Axle's Pos

Image:
screenshot of the scene

Author: lololoer

Group: Default

Filesize: 20.85 kB

Date added: 2013-12-23

Rating: 5

Downloads: 259

Views: 223

Comments: 2

Ratings: 1

Times favored: 0

Made with: Algodoo before v1.8.5

Tags:

Scene tag

This is only an advice for you if you need to know an axle's pos in any scene:

_Pos =

{
r := readable(owner);
(r.geom1pos + r.geom0pos) / 2
}
Please log in to rate this scene
edit
Similar scenes
Title: Sub-Axle (Explained).
Rating: 5
Filesize: 40.37 kB
Downloads: 300
Comments: 1
Ratings: 1
Date added: 2020/08/22 22:24:12
Made with: Algodoo v2.1.0
Rating: rated 5
download
Title: Poseable Ragdoll
Rating: 6.1111
Filesize: 51.77 kB
Downloads: 1370
Comments: 1
Ratings: 3
Date added: 2012/12/08 19:47:17
Made with: Algodoo v2.1.0
Rating: rated 6.1
download
Title: how to do axle suspension
Rating: 5
Filesize: 1.24 MB
Downloads: 480
Comments: 5
Ratings: 1
Date added: 2020/03/13 03:53:13
Made with: Algodoo v2.1.0
Rating: rated 5
download
Title: Spring axle vs. SPRINGY THINGY
Rating: 5
Filesize: 20.21 kB
Downloads: 295
Comments: 1
Ratings: 1
Date added: 2012/10/22 03:26:16
Made with: Algodoo v2.0.2
Rating: rated 5
download
Title: Faster than light
Rating: 5
Filesize: 6.53 kB
Downloads: 330
Comments: 0
Ratings: 1
Date added: 2015/12/09 08:24:10
Made with: Algodoo v2.1.0
Rating: rated 5
download
Title: Box & tracer spin art tutorial
Rating: 5
Filesize: 35.92 kB
Downloads: 347
Comments: 0
Ratings: 1
Date added: 2015/02/16 19:50:37
Made with: Algodoo v2.1.0
Rating: rated 5
download
Your formula only works for one case. The following works for all cases:

hinge := (readable(owner));
hinge.geom1 == 0 ? {
_hingeAbsolutePos = hinge.geom1pos
} : {
g1 := (entitybygeomid(hinge.geom1));
r = math.vec.dist([0, 0], hinge.geom1pos);
a = math.atan2(hinge.geom1pos(1), hinge.geom1pos(0));
_hingeAbsolutePos = g1.pos + [r * cos(g1.angle + a), r * sin(g1.angle + a)]
}
Last edited at 2013/12/24 10:06:57 by s_noonan
Thankyou ill try it :tup: