Search found 3 matches

by NeomerArcana
Sun May 25, 2014 7:22 am
Forum: Beginners Help
Topic: How to draw an ellipse?
Replies: 4
Views: 1167

Re: How to draw an ellipse?

I sort of solved it by adding a new pure virtual method to the ISceneAnimator class. It should return the position of the node being affected by the animator at the provided time. Here is the implementation for CSceneNodeAnimatorFlyCircle: core::vector3df CSceneNodeAnimatorFlyCircle::GetPositionAtTi...
by NeomerArcana
Sun May 25, 2014 6:15 am
Forum: Beginners Help
Topic: How to draw an ellipse?
Replies: 4
Views: 1167

Re: How to draw an ellipse?

So I've adapted a couple of the examples and come up with something. First off, you can see that my ellipses look... like spiderwebs. Second, the inner "planet" you can see the orbit is not on the same plane, and I'm unsure how to get an ellipse to match. /** Example 004 Movement   This Tu...
by NeomerArcana
Sun May 25, 2014 5:26 am
Forum: Beginners Help
Topic: How to draw an ellipse?
Replies: 4
Views: 1167

How to draw an ellipse?

Hi all, I'm very new to the engine and new to 3D game programming in general. I've made plenty of 2D games before. What I'm doing is trying to make a simple game featuring a randomly generated solar system. I've got some nice planets orbiting a sun and moons orbiting planets etc. These orbits are al...