1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
class GeometricObject
{
%TypeHeaderCode
#include <BALL/VIEW/KERNEL/geometricObject.h>
#include <BALL/VIEW/PRIMITIVES/gridVisualisation.h>
#include <BALL/VIEW/PRIMITIVES/box.h>
#include <BALL/VIEW/PRIMITIVES/disc.h>
#include <BALL/VIEW/PRIMITIVES/label.h>
#include <BALL/VIEW/PRIMITIVES/line.h>
#include <BALL/VIEW/PRIMITIVES/mesh.h>
#include <BALL/VIEW/PRIMITIVES/point.h>
#include <BALL/VIEW/PRIMITIVES/simpleBox.h>
#include <BALL/VIEW/PRIMITIVES/sphere.h>
#include <BALL/VIEW/PRIMITIVES/tube.h>
#include <BALL/VIEW/PRIMITIVES/twoColoredLine.h>
#include <BALL/VIEW/PRIMITIVES/twoColoredTube.h>
#include <BALL/VIEW/PRIMITIVES/multiLine.h>
#include <BALL/VIEW/PRIMITIVES/quadMesh.h>
%End
%ConvertToSubClassCode
/////////////////////////////////////////////////
/////////////////////////////////////////////////
//BALL_TO_SIP_MAP(Point)
//BALL_TO_SIP_MAP(MultiLine)
//BALL_TO_SIP_MAP(QuadMesh)
BALL_TO_SIP_MAP(Sphere)
BALL_TO_SIP_MAP(TwoColoredTube)
BALL_TO_SIP_MAP(Tube)
BALL_TO_SIP_MAP(TwoColoredLine)
BALL_TO_SIP_MAP(Line)
BALL_TO_SIP_MAP(Mesh)
BALL_TO_SIP_MAP(GridVisualisation)
BALL_TO_SIP_MAP(Box)
BALL_TO_SIP_MAP(Disc)
BALL_TO_SIP_MAP(SimpleBox)
{
}
%End
public:
GeometricObject() throw();
GeometricObject(const GeometricObject&) throw();
~GeometricObject() throw();
virtual void clear() throw();
void set(const GeometricObject&) throw();
void swap(GeometricObject&) throw();
void setComposite(const Composite*) throw();
const Composite* getComposite() const throw();
virtual bool isValid() const throw();
void setColor(const ColorRGBA&) throw();
void setColor(const ColorUnit&, const ColorUnit&, const ColorUnit&, const ColorUnit& alpha = 1.0) throw();
ColorRGBA& getColor() throw();
void getColor(ColorUnit&, ColorUnit&, ColorUnit&, ColorUnit&) const throw();
// convert to a string representation
SIP_PYOBJECT __str__();
%MethodCode
sipRes = PyString_FromString(String(String("GeometricObject")
+ " { "
+ " Composite: " + String((long int)sipCpp->getComposite())
+ " }").c_str());
%End
SIP_PYOBJECT __repr__();
%MethodCode
sipRes = PyString_FromString(String(String("GeometricObject")
+ " { "
+ " Composite: " + String((long int)sipCpp->getComposite())
+ " }").c_str());
%End
};
|