From Tree, mods to help support the creation of Java bindings.

This commit is contained in:
Robert Osfield
2002-12-06 09:44:11 +00:00
parent 00871ba948
commit 1be82ec697
5 changed files with 16 additions and 12 deletions

View File

@@ -341,7 +341,17 @@ class Cylinder : public Shape
class InfinitePlane : public Shape, public Plane
{
public:
InfinitePlane() {}
InfinitePlane(const InfinitePlane& plane,const CopyOp& copyop=CopyOp::SHALLOW_COPY):
Shape(plane,copyop),
Plane(plane) {}
META_Shape(osg, InfinitePlane)
protected:
virtual ~InfinitePlane() {}
};
class TriangleMesh : public Shape