3DCoatScripting  4.8.31β
С помощью скриптинга можно управлять возможностями Коута и расширять его функционал.
Класс coat::scripto::Mesh

Class for working with polygon mesh which represents like any form. Подробнее...

Базовые классы:coat::scripto::AMesh< Mesh >.

Открытые члены

 Mesh (const std::string &fullPathFileOrLayerName)
 Load from file or layer. Подробнее...
 
 Mesh (const raw_t &raw)
 
bool operator== (const Mesh &b) const
 Comparison. Подробнее...
 
ToolsMesh tools ()
 
- Открытые члены inherited from coat::scripto::AMesh< Mesh >
 mRaw (raw)
 
 AMesh (const AAbout &d)
 
const AAbout & aabout () const
 
bool operator== (const AMesh &b) const
 Comparison. Подробнее...
 
Meshdetails (const float &d)
 Setter for details level.
 
float details () const
 Getter for details level.
 
Meshposition (const Vec3 &p)
 Setter for position.
 
Vec3 position () const
 Getter for position.
 
Meshrotation (const Angles &a)
 Setter for rotation.
 
Angles rotation () const
 Getter for rotation.
 
Meshtransform (const Mat4 &m)
 Setter for transform.
 
Mat4 transform () const
 Getter for transform.
 
Meshadd (const Mesh &b)
 Fusion a mesh b to this mesh. Подробнее...
 
Meshadd (const Mesh &, const Bevel &)
 Fusion a mesh b to this mesh with bevel. Подробнее...
 
Mesh addCopy (const Mesh &b) const
 
Mesh addCopy (const Mesh &, const Bevel &) const
 
Mesh operator| (const Mesh &) const
 Fusion two meshes to one mesh. Logical OR. Подробнее...
 
Meshsubtruct (const Mesh &b)
 Fusion a mesh b to this mesh. Подробнее...
 
Meshsubtruct (const Mesh &, const Bevel &)
 Fusion a mesh b to this mesh with bevel. Подробнее...
 
Mesh subtructCopy (const Mesh &b) const
 
Mesh subtructCopy (const Mesh &, const Bevel &) const
 
Mesh operator- (const Mesh &) const
 Subtract mesh b from this mesh. Подробнее...
 
Meshintersect (const Mesh &b)
 Fusion a mesh b to this mesh. Подробнее...
 
Meshintersect (const Mesh &, const Bevel &)
 Fusion a mesh b to this mesh with bevel. Подробнее...
 
Mesh intersectCopy (const Mesh &b) const
 
Mesh intersectCopy (const Mesh &, const Bevel &) const
 
Mesh operator& (const Mesh &) const
 Intersects mesh b and this mesh. Logical AND. Подробнее...
 
const raw_traw () const
 
raw_traw ()
 

Additional Inherited Members

- Открытые типы inherited from coat::scripto::AMesh< Mesh >
enum  Mode
 
typedef comms::cMeshContainer raw_t
 
- Защищенные члены inherited from coat::scripto::AMesh< Mesh >
MeshcastThis ()
 
- Защищенные данные inherited from coat::scripto::AMesh< Mesh >
AAbout mAAbout
 
raw_t mRaw
 

Подробное описание

Class for working with polygon mesh which represents like any form.

mesh.jpg
Начиная с
4.5.32

Конструктор(ы)

coat::scripto::Mesh::Mesh ( const std::string &  fullPathFileOrLayerName)
inline

Load from file or layer.

If layer not found by name when using a current layer.

Предупреждения
Does not include hierarchy of layer.

Методы

bool coat::scripto::Mesh::operator== ( const Mesh b) const
inline

Comparison.

Mesh a;
Mesh b;
...
if (a == b) { ... }