| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- /*
- Copyright (C) 2011 by Ivan Safrin
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
- The above copyright notice and this permission notice shall be included in
- all copies or substantial portions of the Software.
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- THE SOFTWARE.
- */
- #pragma once
- #include "PolyGlobals.h"
- #include "PolySceneMesh.h"
- #include "PolyMesh.h"
- namespace Polycode {
- /**
- * 3D primitive mesh.
- */
-
- class _PolyExport ScenePrimitive : public SceneMesh {
- public:
-
- /**
- * Create a primitive mesh of specified type and size.
- * @param type Type of primitive to create. Current types are ScenePrimitive::TYPE_BOX, ScenePrimitive::TYPE_PLANE, ScenePrimitive::TYPE_VPLANE, ScenePrimitive::TYPE_SPHERE, ScenePrimitive::TYPE_CYLINDER, ScenePrimitive::TYPE_CONE and ScenePrimitive::TYPE_TORUS
- * @param v1 See the constant primitive types for values for these parameters
- * @param v2 See the constant primitive types for values for these parameters
- * @param v3 See the constant primitive types for values for these parameters
- * @param v4 See the constant primitive types for values for these parameters
- * @param v5 See the constant primitive types for values for these parameters
- */
- ScenePrimitive(int type, Number v1=1.0f, Number v2=1.0f, Number v3=1.0f,Number v4=0.0f,Number v5=0.0f);
- virtual ~ScenePrimitive();
- void setPrimitiveOptions(int type, Number v1=1.0f, Number v2=1.0f, Number v3=1.0f,Number v4=0.0f,Number v5=0.0f);
- void recreatePrimitive();
-
- /**
- * A cube.
- * v1 - X size
- * v2 - Y size
- * v3 - Z size
- */
- static const int TYPE_BOX = 0;
- /**
- * A horizontal plane.
- * v1 - X size
- * v2 - Z size
- */
- static const int TYPE_PLANE = 1;
- /**
- * A vertical plane.
- * v1 - X size
- * v2 - Y size
- */
- static const int TYPE_VPLANE = 2;
-
- /**
- * A cylinder.
- * v1 - Cylinder length
- * v2 - Cylinder radius
- * v3 - Number of segments.
- */
- static const int TYPE_CYLINDER = 3;
- /**
- * A cylinder.
- * v1 - Cylinder length
- * v2 - Cylinder radius
- * v3 - Number of segments.
- */
- static const int TYPE_UNCAPPED_CYLINDER = 4;
- /**
- * A sphere.
- * v1 - Sphere radius
- * v2 - Lat segments
- * v3 - Long segments
- */
- static const int TYPE_SPHERE = 5;
- /**
- * A torus.
- * v1 - Torus radius.
- * v2 - Pipe radius.
- * v3 - Number of ring segments.
- * v4- Number of pipe segments.
- */
- static const int TYPE_TORUS = 6;
-
- /**
- * A cone.
- * v1 - Cone length.
- * v2 - Cone raidus.
- * v3 - Number of segments.
- */
- static const int TYPE_CONE = 7;
- /**
- * A 2D circle.
- * v1 - X size
- * v2 - Y size
- * v3 - Number of segments
- */
- static const int TYPE_CIRCLE = 8;
-
- /**
- * An ico sphere.
- * v1 - Sphere radius
- * v2 - number of subdivisions
- */
- static const int TYPE_ICOSPHERE = 9;
-
- /**
- * An ico sphere.
- * v1 - Sphere radius
- * v2 - number of subdivisions
- */
- static const int TYPE_OCTOSPHERE = 10;
-
- /**
- * A 2D line circle.
- * v1 - X size
- * v2 - Y size
- * v3 - Number of segments
- */
- static const int TYPE_LINE_CIRCLE = 11;
- int getPrimitiveType() const;
-
- Number getPrimitiveParameter1() const;
- Number getPrimitiveParameter2() const;
- Number getPrimitiveParameter3() const;
- Number getPrimitiveParameter4() const;
- Number getPrimitiveParameter5() const;
-
- virtual Entity *Clone(bool deepClone, bool ignoreEditorOnly) const;
- virtual void applyClone(Entity *clone, bool deepClone, bool ignoreEditorOnly) const;
-
- protected:
- int type;
- Number v1;
- Number v2;
- Number v3;
- Number v4;
- Number v5;
-
- };
-
- }
|