You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- given two files, containing numpy nd-arrays (as created by
`numpy.save`), representing the time evolution of the position
and shape, this interface should create an animation capable of
visualising the time evolution of the object. We will need
interfaces for the following objects
- Golestanian Axis Swimmer (`m=1, n=2`)
- Golestanian Plane Swimmer (`m=2, n=3`)
- Golestanian Space Swimmer (`m=6, n=4`)
- Axis crawler (`m=1, n=as many as you wish`)
- Plane worm (`m=2, n=as many as you wish`)
- Space worm (`m=6, n=as many as you wish`)
- etc.
The text was updated successfully, but these errors were encountered:
which read and store two numpy nd arrays from files (create two fake ones for the moment). Store the variables as object_shape and object_position. The ndarrays should have the following shape:
the base class should have then a function (a virtual one)
pose_object(shape, position)
which, if called from within blender on a concrete class, would generate the object with the given shape and position. Start by considering a nurbs curve, with shape given by the control points.
I have some examples I can give you. More on thursday.
A Blender interface
The text was updated successfully, but these errors were encountered: