-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathclassHierarchy.txt
More file actions
12 lines (12 loc) · 1.28 KB
/
classHierarchy.txt
File metadata and controls
12 lines (12 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
Cloud //Generates a cloud of the vertices around opposite vertice.
CloudHyperSphere extends Cloud //Generates a cloud of vertices near the opposite vertice in 3D hypersphere.
CloudSphere extends Cloud //Generates a cloud of vertices near the opposite vertice in 2D hypersphere.
RandomVertice //Generates random angles between a vertice and its opposite vertice.
RandomVerticeCircle extends RandomVertice //Generates a random vertice near the opposite vertice in 1D hypersphere.
RandomVerticeSphere extends RandomVertice //Generates a random vertice near the opposite vertice in 2D hypersphere.
RandomVerticeHSphere extends RandomVertice //Generates a random vertice near the opposite vertice in 3D hypersphere.
MyObject
HyperSphere extends MyObject //Base class for n dimensional [hypersphere]{@link https://en.wikipedia.org/wiki/N-sphere}.
Circle extends HyperSphere //1 dimensional [hypersphere]{@link https://en.wikipedia.org/wiki/N-sphere}. All the vertices form a circle.
Sphere extends Circle //2 dimensional [hypersphere]{@link https://en.wikipedia.org/wiki/N-sphere}. All the vertices form a sphere.
HyperSphere3D extends Sphere //3 dimensional [hypersphere]{@link https://en.wikipedia.org/wiki/N-sphere}. All the vertices form a [hypersphere]{@link https://en.wikipedia.org/wiki/N-sphere}.