I'm trying to make a something for an orbit dynamics using three.js.
I want to draw a area in 3D world using some points. The points are of type Vector3, e.g. [1, 2, 3]. They all lie on the same plane.
Here is an image of my problem.
//I know THREE.Shape
can take an array of Vector2 points to form a shape, but how can I do this with a set of Vector3 points?