50#ifndef _SO_SHAPE_HINTS_ELEMENT
51#define _SO_SHAPE_HINTS_ELEMENT
53#include <Inventor/elements/SoReplacedElement.h>
69SoEXTENDER_Documented
class SoShapeHintsElement :
public SoElement {
71 SO_ELEMENT_HEADER(SoShapeHintsElement);
181 {
set(state, vertexOrdering, shapeType, faceType); }
187 {
set(state,windingType); }
193 {
set(state,useVBO); }
217 return s_vertexOrderingDefault;
224 return s_shapeTypeDefault;
231 return s_faceTypeDefault;
238 return s_windingTypeDefault;
262 virtual void init(
SoState *state);
267 virtual SbBool matches(
const SoElement* elt)
const;
272 virtual SoElement* copyMatchInfo()
const;
276 static void initClass();
277 static void exitClass();
279 static bool isTwoSidedLighting(
SoState *state);
280 static void setForceTwoSidedLighting(
SoState* state,
bool forceTwoSidedLighting );
283 static bool isFrontCulling(
SoState* state );
285 static bool isBackCulling(
SoState* state );
288 bool isFrontCulling()
const;
290 bool isBackCulling()
const;
298 static bool isCounterClockwise(
SoState *state);
301 bool isCounterClockwise()
const;
305 virtual void commonInit();
322 virtual ~SoShapeHintsElement();
325 bool isTwoSidedLighting()
const;
327 bool m_forceTwoSidedLighting;
329 static void initVertexOrdering();
330 static void initShapeType();
331 static void initFaceType();
332 static void initWindingType();
Abstract base class for all database nodes.
static void set(SoState *state, SoNode *, SbBool useVBO)
Indicates if VBO is used from the state.
static void get(SoState *state, WindingType &windingType)
Return current shape winding type from the state.
static VertexOrdering getDefaultVertexOrdering()
Returns default hint.
ShapeType
Hints about entire shape.
@ SOLID
Shape is known to be solid, and it defines the exterior of the volume it encloses.
@ UNKNOWN_SHAPE_TYPE
Nothing is known about shape.
@ SHAPE_TYPE_AS_IS
Indicates to set() to leave as is.
@ INNER_SOLID
Shape is known to be solid, and it defines the interior of the volume it encloses.
static void get(SoState *state, VertexOrdering &vertexOrdering, ShapeType &shapeType, FaceType &faceType)
Returns current shape hints from the state.
FaceType
Hints about faces of shape.
@ CONVEX
Faces are all convex.
@ FACE_TYPE_AS_IS
Indicates to set() to leave as is.
@ UNKNOWN_FACE_TYPE
Nothing is known about faces.
virtual void push(SoState *state)
Push copies the values from the previous element, so set doesn't have to set them if they are set AS_...
WindingType
Hints about winding type.
@ NO_WINDING_TYPE
No hole.
VertexOrdering
Hints about ordering of face vertices.
@ ORDERING_AS_IS
Indicates to set() to leave as is.
@ UNKNOWN_ORDERING
No ordering info is known.
@ COUNTERCLOCKWISE
Vertices are ordered CCW around faces.
@ CLOCKWISE
Vertices are ordered CW around faces.
static void set(SoState *state, WindingType windingType)
Sets the current shape hints in the state.
virtual void print(FILE *fp) const
Prints element (for debugging).
static WindingType getDefaultWindingType()
Returns default hint.
static SbBool getDefaultVBOUsage()
Returns default hint.
static SbBool isVBOUsed(SoState *state)
Indicates if VBO is used from the state.
static void set(SoState *state, SbBool useVBO)
Sets the current shape hints in the state.
static void set(SoState *state, SoNode *, VertexOrdering vertexOrdering, ShapeType shapeType, FaceType faceType)
Sets the current shape hints in the state.
static void set(SoState *state, VertexOrdering vertexOrdering, ShapeType shapeType, FaceType faceType, WindingType windingType, SbBool useVBO)
Set shape hints by defining all options.
static void set(SoState *state, VertexOrdering vertexOrdering, ShapeType shapeType, FaceType faceType)
Sets the current shape hints in the state.
static ShapeType getDefaultShapeType()
Returns default hint.
static void set(SoState *state, SoNode *, WindingType windingType)
static FaceType getDefaultFaceType()
Returns default hint.