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::MeshTorus Class Referenceabstract

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

#include <SMeshTorus.h>

Public Types

enum  Mode
 Operations with meshes. More...
 

Public Member Functions

bool operator== (const AMesh &b) const
 Comparison. More...
 
MeshTorusdetails (const float &d)
 Setter for details level. More...
 
float details () const
 Getter for details level. More...
 
MeshTorusposition (const Vec3 &p)
 Setter for position. More...
 
Vec3 position () const
 Getter for position. More...
 
MeshTorusrotation (const Angles &a)
 Setter for rotation. More...
 
Angles rotation () const
 Getter for rotation. More...
 
MeshTorustransform (const Mat4 &m)
 Setter for transform. More...
 
Mat4 transform () const
 Getter for transform. More...
 
MeshTorusadd (const MeshTorus &b)
 Fusion a mesh b to this mesh. More...
 
MeshTorusadd (const MeshTorus &, const Bevel &)
 Fusion a mesh b to this mesh with bevel. More...
 
Mesh addCopy (const MeshTorus &b) const
 
Mesh addCopy (const MeshTorus &, const Bevel &) const
 
Mesh operator| (const MeshTorus &) const
 Fusion two meshes to one mesh. Logical OR. More...
 
MeshTorussubtruct (const MeshTorus &b)
 Fusion a mesh b to this mesh. More...
 
MeshTorussubtruct (const MeshTorus &, const Bevel &)
 Fusion a mesh b to this mesh with bevel. More...
 
Mesh subtructCopy (const MeshTorus &b) const
 
Mesh subtructCopy (const MeshTorus &, const Bevel &) const
 
Mesh operator- (const MeshTorus &) const
 Subtract mesh b from this mesh. More...
 
MeshTorusintersect (const MeshTorus &b)
 Fusion a mesh b to this mesh. More...
 
MeshTorusintersect (const MeshTorus &, const Bevel &)
 Fusion a mesh b to this mesh with bevel. More...
 
Mesh intersectCopy (const MeshTorus &b) const
 
Mesh intersectCopy (const MeshTorus &, const Bevel &) const
 
Mesh operator& (const MeshTorus &) const
 Intersects mesh b and this mesh. Logical AND. More...
 

Detailed Description

Class for working with mesh which represents like torus.

See Also
MeshSphere for notes.
+ Inheritance diagram for coat::scripto::MeshTorus:

Member Enumeration Documentation

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

Operations with meshes.

See Also
signMode()

Member Function Documentation

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

Fusion a mesh b to this mesh.

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

Setter for details level.

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

Getter for details level.

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

Fusion a mesh b to this mesh.

a.intersect( b );

operator&()

Since
4.7.15
MeshTorus & coat::scripto::AMesh< MeshTorus >::intersect ( const MeshTorus ,
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< MeshTorus >::intersectCopy ( const MeshTorus b) const
inherited
See Also
intersect( const Mesh& )
Since
4.7.15
Mesh coat::scripto::AMesh< MeshTorus >::intersectCopy ( const MeshTorus ,
const Bevel  
) const
inherited
See Also
intersect( const Mesh&, const Bevel& )
Since
4.7.15
Mesh coat::scripto::AMesh< MeshTorus >::operator& ( const MeshTorus ) const
inherited

Intersects mesh b and this mesh. Logical AND.

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

Subtract mesh b from this mesh.

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

Comparison.

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

Fusion two meshes to one mesh. Logical OR.

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

Setter for position.

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

Getter for position.

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

Setter for rotation.

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

Getter for rotation.

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

Fusion a mesh b to this mesh.

a.subtruct( b );

operator-()

Since
4.7.15
MeshTorus & coat::scripto::AMesh< MeshTorus >::subtruct ( const MeshTorus ,
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< MeshTorus >::subtructCopy ( const MeshTorus b) const
inherited
See Also
subtruct( const Mesh& )
Since
4.7.15
Mesh coat::scripto::AMesh< MeshTorus >::subtructCopy ( const MeshTorus ,
const Bevel  
) const
inherited
See Also
subtruct( const Mesh&, const Bevel& )
Since
4.7.15
MeshTorus & coat::scripto::AMesh< MeshTorus >::transform ( const Mat4 m)
inlineinherited

Setter for transform.

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

Getter for transform.


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