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

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

#include <SMeshCone.h>

Public Types

enum  Mode
 Operations with meshes. More...
 

Public Member Functions

bool operator== (const AMesh &b) const
 Comparison. More...
 
MeshConedetails (const float &d)
 Setter for details level. More...
 
float details () const
 Getter for details level. More...
 
MeshConeposition (const Vec3 &p)
 Setter for position. More...
 
Vec3 position () const
 Getter for position. More...
 
MeshConerotation (const Angles &a)
 Setter for rotation. More...
 
Angles rotation () const
 Getter for rotation. More...
 
MeshConetransform (const Mat4 &m)
 Setter for transform. More...
 
Mat4 transform () const
 Getter for transform. More...
 
MeshConeadd (const MeshCone &b)
 Fusion a mesh b to this mesh. More...
 
MeshConeadd (const MeshCone &, const Bevel &)
 Fusion a mesh b to this mesh with bevel. More...
 
Mesh addCopy (const MeshCone &b) const
 
Mesh addCopy (const MeshCone &, const Bevel &) const
 
Mesh operator| (const MeshCone &) const
 Fusion two meshes to one mesh. Logical OR. More...
 
MeshConesubtruct (const MeshCone &b)
 Fusion a mesh b to this mesh. More...
 
MeshConesubtruct (const MeshCone &, const Bevel &)
 Fusion a mesh b to this mesh with bevel. More...
 
Mesh subtructCopy (const MeshCone &b) const
 
Mesh subtructCopy (const MeshCone &, const Bevel &) const
 
Mesh operator- (const MeshCone &) const
 Subtract mesh b from this mesh. More...
 
MeshConeintersect (const MeshCone &b)
 Fusion a mesh b to this mesh. More...
 
MeshConeintersect (const MeshCone &, const Bevel &)
 Fusion a mesh b to this mesh with bevel. More...
 
Mesh intersectCopy (const MeshCone &b) const
 
Mesh intersectCopy (const MeshCone &, const Bevel &) const
 
Mesh operator& (const MeshCone &) const
 Intersects mesh b and this mesh. Logical AND. More...
 

Detailed Description

Class for working with mesh which represents like cone.

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

Member Enumeration Documentation

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

Operations with meshes.

See Also
signMode()

Member Function Documentation

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

Fusion a mesh b to this mesh.

a.add( b );
See Also
operator|(), addCopy()
Since
4.7.15

References coat::scripto::AMesh< T >::add().

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

Setter for details level.

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

Getter for details level.

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

Fusion a mesh b to this mesh.

a.intersect( b );

operator&()

Since
4.7.15

References coat::scripto::AMesh< T >::intersect().

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

Intersects mesh b and this mesh. Logical AND.

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

Subtract mesh b from this mesh.

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

Comparison.

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

Fusion two meshes to one mesh. Logical OR.

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

Setter for position.

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

Getter for position.

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

Setter for rotation.

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

Getter for rotation.

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

Fusion a mesh b to this mesh.

a.subtruct( b );

operator-()

Since
4.7.15

References coat::scripto::AMesh< T >::subtruct().

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

Setter for transform.

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

Getter for transform.


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