Thanks Anton_S,
But I would like a radar of this style !! Of my model Sketchyphysics for MsPhysics!
3D Warehouse
3D Warehouse is a website of searchable, pre-made 3D models that works seamlessly with SketchUp.
(3dwarehouse.sketchup.com)
Thanks Anton_S,
But I would like a radar of this style !! Of my model Sketchyphysics for MsPhysics!
3D Warehouse is a website of searchable, pre-made 3D models that works seamlessly with SketchUp.
(3dwarehouse.sketchup.com)
Hello, I would like to create text that does not of the world of the !! Example: the objects far from the center of the axis!
And I would like to create lines, shapes, points !! A radar...
To get local velocity, along the body's Y-axis, you got to transform the global velocity relative to the body first, then get the Y component:
CODE: SELECT ALL
loc_vel = this.get_velocity.transform(this.get_normal_matrix.inverse)
vy = loc_vel.y
===================
problem!!!!!!
Bonjour,
Je voudrais lire la vitesse D'un corps sur l'axe Y interne,no axe Y mondiale !!!
J'ai essayé get_velocity...
set_var("speed_Y",????)
Hello,
I would like to read the speed of a body on the internal Y-axis, no Y-axis world!
I tried: get_velocity...
set_var("speed_Y",????)
erreur Masse !!!! v1.0.0
no reset position ! big masse
Final base
3D Warehouse is a website of searchable, pre-made 3D models that works seamlessly with SketchUp.
(3dwarehouse.sketchup.com)
@Anton_S
@body.set_omega([Internal body axis , 0, axes in global space]) ???
ex:
*onStart{
@body = simulation.find_body_by_name('body')
}
onUpdate{
r_body = @body.get_matrix
ax = Geom::Vector3d.new([key('up'), 0, 0]).transform(r_body)
@body.set_omega([ax.x, 0, key('right')])
}*