Added first cut of new primtive shapes support.

This commit is contained in:
Robert Osfield
2002-10-30 13:27:15 +00:00
parent 2e99fdacfc
commit da84f9b4aa
17 changed files with 1674 additions and 33 deletions

View File

@@ -33,11 +33,12 @@ Drawable::Drawable(const Drawable& drawable,const CopyOp& copyop):
Object(drawable,copyop),
_parents(), // leave empty as parentList is managed by Geode
_stateset(copyop(drawable._stateset.get())),
_bbox(drawable._bbox),
_bbox_computed(drawable._bbox_computed),
_shape(copyop(drawable._shape.get())),
_supportsDisplayList(drawable._supportsDisplayList),
_useDisplayList(drawable._useDisplayList),
_globjList(drawable._globjList),
_bbox(drawable._bbox),
_bbox_computed(drawable._bbox_computed),
_drawCallback(drawable._drawCallback),
_cullCallback(drawable._cullCallback)
{}