Reader3dsGetFrame Method |
Name | Description | |
---|---|---|
GetFrame(Double) |
Gets the Model3DGroup for frameNo. The frameNo can also be a not integer value to display model between frames - for example frameNo = 1.5 will get the model as it it in the middle between 2st and 3nd frame.
| |
GetFrame(Int32) |
Gets the Model3DGroup for frame. No The frameNo can also be a not integer value to display model between frames - for example frameNo = 1.5 will get the model as it it in the middle between 2st and 3nd frame.
| |
GetFrame(Double, Viewport3D) |
Gets the Model3DGroup for frameNo. No The frameNo can also be a not integer value to display model between frames - for example frameNo = 1.5 will get the model as it it in the middle between 2st and 3nd frame.
| |
GetFrame(Int32, Viewport3D) |
Gets the Model3DGroup for frameNo
| |
GetFrame(Double, Viewport3D, Int32) |
Gets the Model3DGroup for frameNo. No The frameNo can also be a not integer value to display model between frames - for example frameNo = 1.5 will get the model as it it in the middle between 2st and 3nd frame.
| |
GetFrame(Int32, Viewport3D, Int32) |
Gets the Model3DGroup for frameNo. No The frameNo can also be a not integer value to display model between frames - for example frameNo = 1.5 will get the model as it it in the middle between 2st and 3nd frame.
|
Reader3ds newReader3ds; newReader3ds = new Reader3ds(); newReader3ds.ReadFile("c:\\models\\simple_animation.3ds"); for (int frameNo=0; frameNo<newReader3ds.FramesCount; frameNo++) { newReader3ds.GetFrame(frameNo, Viewport1); System.Threading.Thread.Sleep(250); // 4 frames per second }