Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vanhakobyan/shape3d
:city_sunset:Shape3D :city_sunset: in have ellipsoidal , dimensional and parallelogram
https://github.com/vanhakobyan/shape3d
3d dimension elipsoidal move parallerapiped shape
Last synced: about 1 month ago
JSON representation
:city_sunset:Shape3D :city_sunset: in have ellipsoidal , dimensional and parallelogram
- Host: GitHub
- URL: https://github.com/vanhakobyan/shape3d
- Owner: VanHakobyan
- Created: 2017-01-10T17:41:47.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-29T12:06:23.000Z (over 7 years ago)
- Last Synced: 2024-03-17T21:52:41.193Z (10 months ago)
- Topics: 3d, dimension, elipsoidal, move, parallerapiped, shape
- Language: C#
- Homepage:
- Size: 18.6 KB
- Stars: 5
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Shape3D
* Shape3D in have ellipsoidal , dimensional and parallelepiped
```C#
ellipsoidal elips = new ellipsoidal(5, 1.2f, 8, 1200); //parameters
Console.WriteLine(elips.areaGet()); // area ellipsoidal
Console.WriteLine(elips.massGet()); // mass ellipsoidal
Console.WriteLine(elips.volumeGet()); // volume ellipsoidal
elips.MoveBy(5f, 1.5f, 4.1f);//axis movement
elips.MoveTo(6.7f, 4f, 3f); //axis movementparallelepiped paral = new parallelepiped(1.5f, 5, 15, 800); //parameters
Console.WriteLine(paral.areaGet()); //area parallelogram
Console.WriteLine(paral.massGet()); //mass parallelogram
Console.WriteLine(paral.volumeGet()); //volume parallelogram
paral.MoveBy(4.1f, 4f, 2.9f);
paral.MoveTo(5.3f,1.1f,3.8f);
```
#### Dimensional space
In three-dimensional space, a Platonic solid is a regular, convex polyhedron. It is constructed by congruent regular polygonal faces with the same number of faces meeting at each vertex. Five solids meet those criteria:### For more [Platonic solid](https://en.wikipedia.org/wiki/Platonic_solid)