├── .gitattributes ├── .gitignore ├── README.md ├── ThreeDimentionalShapes ├── Testing │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Testing.csproj ├── ThreeDimentionalShapes.sln └── ThreeDimentionalShapes │ ├── AbstractShapes.cs │ ├── Cone.cs │ ├── Ellipsoid.cs │ ├── IMoveable.cs │ ├── MoveDirections.cs │ ├── Point.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ThreeDimentionalShapes.csproj └── shapes.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merisahakyan/ThreeDShapes/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merisahakyan/ThreeDShapes/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merisahakyan/ThreeDShapes/HEAD/README.md -------------------------------------------------------------------------------- /ThreeDimentionalShapes/Testing/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merisahakyan/ThreeDShapes/HEAD/ThreeDimentionalShapes/Testing/App.config -------------------------------------------------------------------------------- /ThreeDimentionalShapes/Testing/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merisahakyan/ThreeDShapes/HEAD/ThreeDimentionalShapes/Testing/Program.cs -------------------------------------------------------------------------------- /ThreeDimentionalShapes/Testing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merisahakyan/ThreeDShapes/HEAD/ThreeDimentionalShapes/Testing/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ThreeDimentionalShapes/Testing/Testing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merisahakyan/ThreeDShapes/HEAD/ThreeDimentionalShapes/Testing/Testing.csproj -------------------------------------------------------------------------------- /ThreeDimentionalShapes/ThreeDimentionalShapes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merisahakyan/ThreeDShapes/HEAD/ThreeDimentionalShapes/ThreeDimentionalShapes.sln -------------------------------------------------------------------------------- /ThreeDimentionalShapes/ThreeDimentionalShapes/AbstractShapes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merisahakyan/ThreeDShapes/HEAD/ThreeDimentionalShapes/ThreeDimentionalShapes/AbstractShapes.cs -------------------------------------------------------------------------------- /ThreeDimentionalShapes/ThreeDimentionalShapes/Cone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merisahakyan/ThreeDShapes/HEAD/ThreeDimentionalShapes/ThreeDimentionalShapes/Cone.cs -------------------------------------------------------------------------------- /ThreeDimentionalShapes/ThreeDimentionalShapes/Ellipsoid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merisahakyan/ThreeDShapes/HEAD/ThreeDimentionalShapes/ThreeDimentionalShapes/Ellipsoid.cs -------------------------------------------------------------------------------- /ThreeDimentionalShapes/ThreeDimentionalShapes/IMoveable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merisahakyan/ThreeDShapes/HEAD/ThreeDimentionalShapes/ThreeDimentionalShapes/IMoveable.cs -------------------------------------------------------------------------------- /ThreeDimentionalShapes/ThreeDimentionalShapes/MoveDirections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merisahakyan/ThreeDShapes/HEAD/ThreeDimentionalShapes/ThreeDimentionalShapes/MoveDirections.cs -------------------------------------------------------------------------------- /ThreeDimentionalShapes/ThreeDimentionalShapes/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merisahakyan/ThreeDShapes/HEAD/ThreeDimentionalShapes/ThreeDimentionalShapes/Point.cs -------------------------------------------------------------------------------- /ThreeDimentionalShapes/ThreeDimentionalShapes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merisahakyan/ThreeDShapes/HEAD/ThreeDimentionalShapes/ThreeDimentionalShapes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ThreeDimentionalShapes/ThreeDimentionalShapes/ThreeDimentionalShapes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merisahakyan/ThreeDShapes/HEAD/ThreeDimentionalShapes/ThreeDimentionalShapes/ThreeDimentionalShapes.csproj -------------------------------------------------------------------------------- /shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merisahakyan/ThreeDShapes/HEAD/shapes.png --------------------------------------------------------------------------------