Open Inventor Release 2025.1.0
 
Loading...
Searching...
No Matches
SoShapeHintsElement.h
1/*=======================================================================
2 * Copyright 1991-1996, Silicon Graphics, Inc.
3 * ALL RIGHTS RESERVED
4 *
5 * UNPUBLISHED -- Rights reserved under the copyright laws of the United
6 * States. Use of a copyright notice is precautionary only and does not
7 * imply publication or disclosure.
8 *
9 * U.S. GOVERNMENT RESTRICTED RIGHTS LEGEND:
10 * Use, duplication or disclosure by the Government is subject to restrictions
11 * as set forth in FAR 52.227.19(c)(2) or subparagraph (c)(1)(ii) of the Rights
12 * in Technical Data and Computer Software clause at DFARS 252.227-7013 and/or
13 * in similar or successor clauses in the FAR, or the DOD or NASA FAR
14 * Supplement. Contractor/manufacturer is Silicon Graphics, Inc.,
15 * 2011 N. Shoreline Blvd. Mountain View, CA 94039-7311.
16 *
17 * THE CONTENT OF THIS WORK CONTAINS CONFIDENTIAL AND PROPRIETARY
18 * INFORMATION OF SILICON GRAPHICS, INC. ANY DUPLICATION, MODIFICATION,
19 * DISTRIBUTION, OR DISCLOSURE IN ANY FORM, IN WHOLE, OR IN PART, IS STRICTLY
20 * PROHIBITED WITHOUT THE PRIOR EXPRESS WRITTEN PERMISSION OF SILICON
21 * GRAPHICS, INC.
22**=======================================================================*/
23/*=======================================================================
24** Author : Paul S. Strauss (MMM yyyy)
25**=======================================================================*/
26/*=======================================================================
27 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), ***
28 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. ***
29 *** ***
30 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS ***
31 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR ***
32 *** WRITTEN AUTHORIZATION OF FEI S.A.S. ***
33 *** ***
34 *** RESTRICTED RIGHTS LEGEND ***
35 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS ***
36 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN ***
37 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT ***
38 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN ***
39 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. ***
40 *** ***
41 *** COPYRIGHT (C) 1996-2025 BY FEI S.A.S, ***
42 *** BORDEAUX, FRANCE ***
43 *** ALL RIGHTS RESERVED ***
44**=======================================================================*/
45/*=======================================================================
46** Modified by : VSG (MMM YYYY)
47**=======================================================================*/
48
49
50#ifndef _SO_SHAPE_HINTS_ELEMENT
51#define _SO_SHAPE_HINTS_ELEMENT
52
53#include <Inventor/elements/SoReplacedElement.h>
54
68
69SoEXTENDER_Documented class SoShapeHintsElement : public SoElement {
70
71 SO_ELEMENT_HEADER(SoShapeHintsElement);
72
73 public:
95
117
135
150
155 static void set(SoState *state, VertexOrdering vertexOrdering,
156 ShapeType shapeType, FaceType faceType);
157
162 static void set(SoState *state, WindingType windingType);
163
167 static void set(SoState *state, SbBool useVBO) ;
168
172 static void set(SoState *state, VertexOrdering vertexOrdering, ShapeType shapeType, FaceType faceType,
173 WindingType windingType, SbBool useVBO);
174
178 static void set(SoState *state, SoNode *,
179 VertexOrdering vertexOrdering,
180 ShapeType shapeType, FaceType faceType)
181 { set(state, vertexOrdering, shapeType, faceType); }
182
186 static void set(SoState *state, SoNode *,WindingType windingType)
187 { set(state,windingType); }
188
192 static void set(SoState *state, SoNode *, SbBool useVBO)
193 { set(state,useVBO); }
194
198 static void get(SoState *state,
199 VertexOrdering &vertexOrdering,
200 ShapeType &shapeType, FaceType &faceType);
201
205 static void get(SoState *state, WindingType &windingType );
206
210 static SbBool isVBOUsed(SoState *state) ;
211
216 {
217 return s_vertexOrderingDefault;
218 }
219
223 {
224 return s_shapeTypeDefault;
225 }
226
230 {
231 return s_faceTypeDefault;
232 }
233
237 {
238 return s_windingTypeDefault;
239 }
240
244 {
245 return true;
246 }
247
252 virtual void push(SoState *state);
253
257 virtual void print(FILE *fp) const;
258
259private:
260
262 virtual void init(SoState *state);
263
267 virtual SbBool matches(const SoElement* elt) const;
268
272 virtual SoElement* copyMatchInfo() const;
273
274 private:
275 // Initializes the SoShapeHintsElement class
276 static void initClass();
277 static void exitClass();
278
279 static bool isTwoSidedLighting(SoState *state);
280 static void setForceTwoSidedLighting( SoState* state, bool forceTwoSidedLighting );
281
283 static bool isFrontCulling( SoState* state );
285 static bool isBackCulling( SoState* state );
286
288 bool isFrontCulling() const;
290 bool isBackCulling() const;
291
293 static bool isFrontCulling( VertexOrdering vertexOrdering, ShapeType shapeType );
295 static bool isBackCulling( VertexOrdering vertexOrdering, ShapeType shapeType );
296
298 static bool isCounterClockwise(SoState *state);
299
301 bool isCounterClockwise() const;
302
303private:
305 virtual void commonInit();
306
307 // Virtual set methods that subclasses can override.
308 virtual void setElt(VertexOrdering vertexOrdering, ShapeType shapeType, FaceType faceType);
309
310 virtual void setElt(WindingType windingType);
311
312 // Set shape hints by defining all options.
313 virtual void setElt(VertexOrdering vertexOrdering, ShapeType shapeType, FaceType faceType,
314 WindingType windingType, SbBool useVBO);
315
316 VertexOrdering vertexOrdering;
317 ShapeType shapeType;
318 FaceType faceType;
319 WindingType windingType;
320 SbBool useVBO ;
321
322 virtual ~SoShapeHintsElement();
323
324private:
325 bool isTwoSidedLighting() const;
326
327 bool m_forceTwoSidedLighting;
328
329 static void initVertexOrdering();
330 static void initShapeType();
331 static void initFaceType();
332 static void initWindingType();
333
334 static VertexOrdering s_vertexOrderingDefault;
335 static ShapeType s_shapeTypeDefault;
336 static FaceType s_faceTypeDefault;
337 static WindingType s_windingTypeDefault;
338};
339
340#endif /* _SO_SHAPE_HINTS_ELEMENT */
341
friend class SoState
Definition SoElement.h:406
Abstract base class for all database nodes.
Definition SoNode.h:145
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.
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.
int SbBool
Boolean type.
Definition SbBase.h:87