3DCoat  3D-COAT 4.9.xx
3DCoat is the one application that has all the tools you need to take your 3D idea from a block of digital clay all the way to a production ready, fully textured organic or hard surface model.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
coat::scripto::MeshNGon Class Referenceabstract

Class for working with mesh which represents like ngon. More...

#include <SMeshNGon.h>

Public Types

enum  Mode
 Operations with meshes. More...
 

Public Member Functions

bool operator== (const AMesh &b) const
 Comparison. More...
 
MeshNGondetails (const float &d)
 Setter for details level. More...
 
float details () const
 Getter for details level. More...
 
MeshNGonposition (const Vec3 &p)
 Setter for position. More...
 
Vec3 position () const
 Getter for position. More...
 
MeshNGonrotation (const Angles &a)
 Setter for rotation. More...
 
Angles rotation () const
 Getter for rotation. More...
 
MeshNGontransform (const Mat4 &m)
 Setter for transform. More...
 
Mat4 transform () const
 Getter for transform. More...
 
MeshNGonadd (const MeshNGon &b)
 Fusion a mesh b to this mesh. More...
 
MeshNGonadd (const MeshNGon &, const Bevel &)
 Fusion a mesh b to this mesh with bevel. More...
 
Mesh addCopy (const MeshNGon &b) const
 
Mesh addCopy (const MeshNGon &, const Bevel &) const
 
Mesh operator| (const MeshNGon &) const
 Fusion two meshes to one mesh. Logical OR. More...
 
MeshNGonsubtruct (const MeshNGon &b)
 Fusion a mesh b to this mesh. More...
 
MeshNGonsubtruct (const MeshNGon &, const Bevel &)
 Fusion a mesh b to this mesh with bevel. More...
 
Mesh subtructCopy (const MeshNGon &b) const
 
Mesh subtructCopy (const MeshNGon &, const Bevel &) const
 
Mesh operator- (const MeshNGon &) const
 Subtract mesh b from this mesh. More...
 
MeshNGonintersect (const MeshNGon &b)
 Fusion a mesh b to this mesh. More...
 
MeshNGonintersect (const MeshNGon &, const Bevel &)
 Fusion a mesh b to this mesh with bevel. More...
 
Mesh intersectCopy (const MeshNGon &b) const
 
Mesh intersectCopy (const MeshNGon &, const Bevel &) const
 
Mesh operator& (const MeshNGon &) const
 Intersects mesh b and this mesh. Logical AND. More...
 

Detailed Description

Class for working with mesh which represents like ngon.

mesh-ngon.jpg
See Also
MeshSphere for notes.
Since
4.5.32
+ Inheritance diagram for coat::scripto::MeshNGon:

Member Enumeration Documentation

enum coat::scripto::AMesh::Mode
stronginherited

Operations with meshes.

See Also
signMode()

Member Function Documentation

MeshNGon & coat::scripto::AMesh< MeshNGon >::add ( const MeshNGon b)
inlineinherited

Fusion a mesh b to this mesh.

a.add( b );
See Also
operator|(), addCopy()
Since
4.7.15
MeshNGon & coat::scripto::AMesh< MeshNGon >::add ( const MeshNGon ,
const Bevel  
)
inherited

Fusion a mesh b to this mesh with bevel.

a.add( b );
See Also
Bevel, operator|(), addCopy()
Since
4.7.15
Mesh coat::scripto::AMesh< MeshNGon >::addCopy ( const MeshNGon b) const
inherited
See Also
add( const Mesh& )
Since
4.7.15
Mesh coat::scripto::AMesh< MeshNGon >::addCopy ( const MeshNGon ,
const Bevel  
) const
inherited
See Also
add( const Mesh&, const Bevel& )
Since
4.7.15
MeshNGon & coat::scripto::AMesh< MeshNGon >::details ( const float &  d)
inlineinherited

Setter for details level.

float coat::scripto::AMesh< MeshNGon >::details ( ) const
inlineinherited

Getter for details level.

MeshNGon & coat::scripto::AMesh< MeshNGon >::intersect ( const MeshNGon b)
inlineinherited

Fusion a mesh b to this mesh.

a.intersect( b );

operator&()

Since
4.7.15
MeshNGon & coat::scripto::AMesh< MeshNGon >::intersect ( const MeshNGon ,
const Bevel  
)
inherited

Fusion a mesh b to this mesh with bevel.

a.intersect( b );
See Also
Bevel
Since
4.7.15
Mesh coat::scripto::AMesh< MeshNGon >::intersectCopy ( const MeshNGon b) const
inherited
See Also
intersect( const Mesh& )
Since
4.7.15
Mesh coat::scripto::AMesh< MeshNGon >::intersectCopy ( const MeshNGon ,
const Bevel  
) const
inherited
See Also
intersect( const Mesh&, const Bevel& )
Since
4.7.15
Mesh coat::scripto::AMesh< MeshNGon >::operator& ( const MeshNGon ) const
inherited

Intersects mesh b and this mesh. Logical AND.

Mesh r = a & b;
See Also
intersect()
Mesh coat::scripto::AMesh< MeshNGon >::operator- ( const MeshNGon ) const
inherited

Subtract mesh b from this mesh.

Mesh r = a - b;
See Also
subtruct()
bool coat::scripto::AMesh< MeshNGon >::operator== ( const AMesh< MeshNGon > &  b) const
inlineinherited

Comparison.

Mesh a;
Mesh b;
...
if (a == b) { ... }
Mesh coat::scripto::AMesh< MeshNGon >::operator| ( const MeshNGon ) const
inherited

Fusion two meshes to one mesh. Logical OR.

Mesh r = a | b;
See Also
add()
MeshNGon & coat::scripto::AMesh< MeshNGon >::position ( const Vec3 p)
inlineinherited

Setter for position.

Vec3 coat::scripto::AMesh< MeshNGon >::position ( ) const
inlineinherited

Getter for position.

MeshNGon & coat::scripto::AMesh< MeshNGon >::rotation ( const Angles a)
inlineinherited

Setter for rotation.

Angles coat::scripto::AMesh< MeshNGon >::rotation ( ) const
inlineinherited

Getter for rotation.

MeshNGon & coat::scripto::AMesh< MeshNGon >::subtruct ( const MeshNGon b)
inlineinherited

Fusion a mesh b to this mesh.

a.subtruct( b );

operator-()

Since
4.7.15
MeshNGon & coat::scripto::AMesh< MeshNGon >::subtruct ( const MeshNGon ,
const Bevel  
)
inherited

Fusion a mesh b to this mesh with bevel.

a.subtruct( b );
See Also
Bevel
Since
4.7.15
Mesh coat::scripto::AMesh< MeshNGon >::subtructCopy ( const MeshNGon b) const
inherited
See Also
subtruct( const Mesh& )
Since
4.7.15
Mesh coat::scripto::AMesh< MeshNGon >::subtructCopy ( const MeshNGon ,
const Bevel  
) const
inherited
See Also
subtruct( const Mesh&, const Bevel& )
Since
4.7.15
MeshNGon & coat::scripto::AMesh< MeshNGon >::transform ( const Mat4 m)
inlineinherited

Setter for transform.

Mat4 coat::scripto::AMesh< MeshNGon >::transform ( ) const
inlineinherited

Getter for transform.


The documentation for this class was generated from the following file: