#include "MRMeshFwd.h"
#include "MRConstants.h"
Go to the source code of this file.
|
| namespace | MR |
| | only for bindings generation
|
| |
|
| MRMESH_API Mesh | MR::makeCylinder (float radius=0.1f, float length=1.0f, int resolution=16) |
| | Z-looking.
|
| |
| MRMESH_API Mesh | MR::makeOpenCylinder (float radius=1, float z1=-1, float z2=1, int numCircleSegments=16) |
| | A hollow cylinder.
|
| |
| MRMESH_API Mesh | MR::makeOpenCone (float radius=1, float zApex=0, float zBase=1, int numCircleSegments=16) |
| | A hollow cone.
|
| |
| MRMESH_API Mesh | MR::makeCylinderAdvanced (float radius0=0.1f, float radius1=0.1f, float start_angle=0.0f, float arc_size=2.0f *PI_F, float length=1.0f, int resolution=16) |
| |
| MRMESH_API Mesh | MR::makeCone (float radius0=0.1f, float length=1.0f, int resolution=32) |
| | Makes cone mesh by calling makeCylinderAdvanced with the top radius 0.
|
| |