#include <mobu-python-api.h>
FBObjectPoseMirrorOptions class. This class exposes the object used to store the options for the mirror of an object pose.
Public Member Functions |
|
def | __reduce__ () |
def | __init__ () |
def | ClearFlag () |
def | GetFlag () |
def | SetFlag () |
Public Attributes |
|
FBVector4< double > | mMirrorPlaneEquation |
def __reduce__ | ( | ) |
def __init__ | ( | ) |
Python Docstring:
__init__( (object)arg1) -> None
C++ Signature:
FBObjectPoseMirrorOptions()
Constructor.
def ClearFlag | ( | ) |
Python Docstring:
ClearFlag( (FBObjectPoseMirrorOptions)arg1) -> None
C++ Signature:
void ClearFlag()
Clear all flags.
def GetFlag | ( | ) |
Python Docstring:
GetFlag( (FBObjectPoseMirrorOptions)arg1, (FBObjectPoseMirrorOptionsFlag)arg2) -> bool
C++ Signature:
bool GetFlag(FBObjectPoseMirrorOptionsFlag pFlag)
Get a flag value.
pFlag | Flag to get. |
def SetFlag | ( | ) |
Python Docstring:
SetFlag( (FBObjectPoseMirrorOptions)arg1, (FBObjectPoseMirrorOptionsFlag)arg2, (object)arg3) -> None
C++ Signature:
void SetFlag(FBObjectPoseMirrorOptionsFlag pFlag, bool pValue)
Set a flag value.
pFlag | Flag to set. |
pValue | Value to set. |
FBVector4< double > mMirrorPlaneEquation |
Equation of the mirror plane. It is a vector defining four scalars (a,b,c,d) for the equation of a plane (ax + by + cz + d = 0). (a,b,c) represents the normal of the plane. (d) represents the offset from the origin in the direction of the normal. Example: (1,0,0,0) defines the plane YZ intersecting with the origin.