Developer Documentation
|
Public Types | |
enum | DecimationOrder { DISTANCE, NORMALDEV, EDGELENGTH } |
Public Member Functions | |
PerObjectData * | copyPerObjectData () |
Copy Function. More... | |
void | setDistanceConstraint (double _value) |
void | setNormalDeviationConstraint (int _value) |
void | setNormalFlippingConstraint () |
void | setRoundnessConstraint (double _value) |
void | setAspectRatioConstraint (double _value) |
void | setEdgeLengthConstraint (double _value) |
void | setIndependentSetsConstraint () |
void | setDecimationOrder (DecimationOrder _order) |
void | removeDistanceConstraint () |
void | removeNormalDeviationConstraint () |
void | removeNormalFlippingConstraint () |
void | removeRoundnessConstraint () |
void | removeAspectRatioConstraint () |
void | removeEdgeLengthConstraint () |
void | removeIndependentSetsConstraint () |
bool | normalDeviation () |
bool | normalFlipping () |
bool | distance () |
bool | roundness () |
bool | aspectRatio () |
bool | edgeLength () |
bool | independentSets () |
int | normalDeviationValue () |
double | distanceValue () |
double | edgeLengthValue () |
double | aspectRatioValue () |
double | roundnessValue () |
Public Member Functions inherited from PerObjectData | |
PerObjectData () | |
You have to provide your own constructor for your object. | |
Definition at line 53 of file DecimaterInfo.hh.
|
virtual |
Copy Function.
You have to reimplement this function to allow the core to create a copies of your Object. By default it will return 0;
The function has to create a deep copy of the object, as it will also be used to create backups. If you use pointer inside your class, remember to not copy the pointer only but also the data!
Reimplemented from PerObjectData.
Definition at line 71 of file DecimaterInfo.cc.