Open Inventor Release 2025.1.0
 
Loading...
Searching...
No Matches
SoCamera.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_CAMERA_
51#define _SO_CAMERA_
52
53#include <Inventor/SbBox.h>
54#include <Inventor/SbViewportRegion.h>
55#include <Inventor/nodes/SoNode.h>
56#include <Inventor/fields/SoSFFloat.h>
57#include <Inventor/fields/SoSFRotation.h>
58#include <Inventor/fields/SoSFVec3f.h>
59#include <Inventor/fields/SoSFEnum.h>
60#include <Inventor/SbPImpl.h>
61
62#ifdef _WIN32
63#pragma warning(push)
64#pragma warning(disable:4251)
65#endif
66
68class SoState;
69
70
71// Callback function prototypes
72
73class SoCamera ;
74typedef void SoCameraCB( SoCamera *camera, SoGLRenderAction* action );
75
77//
78// Class: SoCamera
79//
80// Abstract base class Camera node.
81//
83
84SO_PIMPL_PUBLIC_DECLARATION(SoCamera)
85
86
193class SoCamera : public SoNode {
194
195 SO_NODE_ABSTRACT_HEADER(SoCamera);
196 SO_PIMPL_PUBLIC_HEADER(SoCamera);
197
198 public:
228
229 // NOTE: These fields are here so that all camera subclasses do
230 // not have to define them separately. However, all subclasses
231 // DO have to set up field data with these fields in them to make
232 // things work properly.
233
234 // Fields
275
297
320
346
359
365 void pointAt(const SbVec3f &targetPoint);
366
372 virtual void scaleHeight(float scaleFactor) = 0;
373
435 virtual SbViewVolume getViewVolume(float useAspectRatio = 0.0) const = 0;
436
439 float nearDist,
440 float farDist,
442 SbRotation rotation) const = 0;
443
468 void viewAll(SoNode *sceneRoot,
469 const SbViewportRegion &vpRegion,
470 float slack = 1.0);
479 void viewAll(SoPath *path,
480 const SbViewportRegion &vpRegion,
481 float slack = 1.0);
482
490 void viewAll(const SbBox3f& bbox,
491 const SbViewportRegion &vpRegion);
492
498
499#if 1
500SoDEPRECATED
507 virtual void setStereoAdjustment(float adjustment);
508SoDEPRECATED
513 float getStereoAdjustment() const;
514
515SoDEPRECATED
557 virtual void setStereoAbsoluteAdjustments( SbBool absolute );
558SoDEPRECATED
564
565SoDEPRECATED
581 virtual void setBalanceAdjustment(float adjustment, SbBool nearFrac = false);
582SoDEPRECATED
587 float getBalanceAdjustment() const;
588
589SoDEPRECATED
596
597SoDEPRECATED
602 virtual void allowStereo(SbBool);
603
604#endif
605
621
629
634
635private:
636 virtual void doAction(SoAction *action);
637 virtual void callback(SoCallbackAction *action);
638 virtual void GLRender(SoGLRenderAction *action);
639 virtual void getBoundingBox(SoGetBoundingBoxAction *action);
640 virtual void handleEvent(SoHandleEventAction *action);
641 virtual void rayPick(SoRayPickAction *action);
642 virtual void getPrimitiveCount(SoGetPrimitiveCountAction *action);
643
644 private:
645 static void initClass();
646 static void exitClass();
647
648 // Set a callback at the end of SoCamera::GLRender().
649 static void setPostCallback( SoCameraCB *f ) ;
650
651 static SbVec3f fromObjectSpace(const SbVec3f &vector, const SbMatrix &matrix, const SbViewportRegion &vpr);
652 static SbVec3f toObjectSpace(const SbVec3f &pixel, const SbMatrix &matrix, const SbViewportRegion &vpr);
653
656
658 void setLightCamera(bool flag);
659
661 bool isLightCamera() const;
662
666 const SbViewportRegion &getLastViewportRegion() const;
667
669 SbVec3f getFocalPoint() const;
670
671 private:
673 SoCamera();
674
676 virtual ~SoCamera();
677 virtual float getEyeOffset( SoState* state = NULL );
678 virtual void updateStereoAdjustments( SoState* state = NULL );
679
680
687 virtual void viewBoundingBox(const SbBox3f &box, float aspect, float slack) = 0;
688
694 virtual void jitter(int numPasses, int curPass, const SbViewportRegion &vpReg, SbVec3f &jitterAmount) const;
695
696private:
697 void commonConstructor();
698};
699
701//
702// Commonly used camera aspect ratios
703//
704
705#define SO_ASPECT_SQUARE 1.00 /* Square (1.000) */
706#define SO_ASPECT_VIDEO 1.333333333 /* Video (0.75) */
707#define SO_ASPECT_35mm_ACADEMY 1.371 /* 35mm, Academy ap (.72939460) */
708#define SO_ASPECT_16mm 1.369 /* 16mm cinema (.730460189) */
709#define SO_ASPECT_35mm_FULL 1.33333 /* 35mm cinema, full ap (0.75) */
710#define SO_ASPECT_70mm 2.287 /* 70 mm unsqueezed (.43725404) */
711#define SO_ASPECT_CINEMASCOPE 2.35 /* Cinemascope (.425531914) */
712#define SO_ASPECT_HDTV 1.777777777 /* HDTV (16:9) */
713#define SO_ASPECT_PANAVISION 2.361 /* Panavision (.423549343) */
714#define SO_ASPECT_35mm 1.5 /* 35mm still camera (.666666) */
715#define SO_ASPECT_VISTAVISION 2.301 /* Vistavision (.434593654) */
716
717
718#ifdef _WIN32
719#pragma warning(pop)
720#endif
721
722#endif /* _SO_CAMERA_ */
723
3D box class.
Definition SbBox.h:649
4x4 matrix class.
Definition SbMatrix.h:309
Class for representing a rotation.
Definition SbRotation.h:126
3D vector class.
Definition SbVec.h:932
3D viewing volume class.
Class for representing a viewport.
Abstract base class for camera nodes.
Definition SoCamera.h:193
virtual void scaleHeight(float scaleFactor)=0
Scales the height of the camera.
SoSFVec3f position
The location of the camera viewpoint.
Definition SoCamera.h:245
virtual SoDEPRECATED void allowStereo(SbBool)
Allows the camera to render in stereo.
SoSFRotation orientation
The orientation of the camera viewpoint, defined as a rotation of the viewing direction from its defa...
Definition SoCamera.h:251
void setStereoMode(StereoMode mode)
Sets the stereo mode.
SbViewportRegion getViewportBounds(const SbViewportRegion &region) const
Returns the viewport region this camera would use to render into the given viewport region,...
SoSFFloat farDistance
The distance from the camera viewpoint to the far clipping plane.
Definition SoCamera.h:267
SoSFFloat aspectRatio
The ratio of camera viewing width to height.
Definition SoCamera.h:257
ViewportMapping
Viewport mapping.
Definition SoCamera.h:200
@ CROP_VIEWPORT_LINE_FRAME
Crops the viewport, but draws a thin frame around the viewport.
Definition SoCamera.h:210
@ CROP_VIEWPORT_NO_FRAME
Crops the viewport, but gives no visual feedback as to the viewport dimensions within the window.
Definition SoCamera.h:215
@ CROP_VIEWPORT_FILL_FRAME
Crops the viewport within the current window, so that the aspect ratio matches that of the camera.
Definition SoCamera.h:206
@ ADJUST_CAMERA
Adjusts the camera aspect ratio and height to make it fit within the given window.
Definition SoCamera.h:222
@ LEAVE_ALONE
Do nothing.
Definition SoCamera.h:226
SoSFFloat focalDistance
The distance from the viewpoint to the point of focus.
Definition SoCamera.h:274
virtual SbViewVolume getViewVolume(float aspectRatio, float nearDist, float farDist, SbVec3f position, SbRotation rotation) const =0
Computes a view volume from the given parameters.
ExposureMode
Modes that define how to map the color values in the framebuffer to fir them in the [0 - 1] range.
Definition SoCamera.h:304
@ HDR_NEUTRAL
Apply a fixed curve function to color values to fit them in the [0 - 1] range.
Definition SoCamera.h:318
@ LDR_LINEAR
Keep colors as is in the framebuffer.
Definition SoCamera.h:309
virtual SoDEPRECATED void setStereoAbsoluteAdjustments(SbBool absolute)
Specifies if stereo adjustments are absolute.
void viewAll(const SbBox3f &bbox, const SbViewportRegion &vpRegion)
Sets the camera to view the region defined by the given bounding box.
virtual SoDEPRECATED void setStereoAdjustment(float adjustment)
Sets the stereo offset (the distance of each eye from the camera position).
virtual SoDEPRECATED void setBalanceAdjustment(float adjustment, SbBool nearFrac=false)
Sets the stereo balance (the position of the zero parallax plane) and specifies whether the balance v...
SoSFFloat blur
Amount of blur to apply to out of focus areas.
Definition SoCamera.h:296
void viewAll(SoNode *sceneRoot, const SbViewportRegion &vpRegion, float slack=1.0)
Sets the camera to view the scene rooted by the given node.
void viewAll(SoPath *path, const SbViewportRegion &vpRegion, float slack=1.0)
Sets the camera to view the scene defined by the given path.
SoSFFloat nearDistance
The distance from the camera viewpoint to the near clipping plane.
Definition SoCamera.h:262
SoSFFloat exposureCompensation
Adjusts the exposure of the rendering.
Definition SoCamera.h:358
SoDEPRECATED SbBool isBalanceAdjustmentNearFrac() const
Returns TRUE if the stereo balance adjustement is defined as a fraction of the camera near distance.
SoDEPRECATED SbBool getStereoAbsoluteAdjustment() const
Queries the stereo absolute adjustment state.
SoSFEnum viewportMapping
Defines how to map the rendered image into the current viewport, when the aspect ratio of the camera ...
Definition SoCamera.h:240
SoDEPRECATED float getBalanceAdjustment() const
Queries the parallax balance.
SoDEPRECATED float getStereoAdjustment() const
Queries the stereo offset.
virtual SbViewVolume getViewVolume(float useAspectRatio=0.0) const =0
Returns a view volume object, based on the camera's viewing parameters.
StereoMode
Stereo mode.
Definition SoCamera.h:607
@ MONOSCOPIC
Monoscopic (i.e., non-stereo) viewing.
Definition SoCamera.h:611
@ LEFT_VIEW
Left eye view.
Definition SoCamera.h:615
@ RIGHT_VIEW
Right eye view.
Definition SoCamera.h:619
SoSFEnum exposureMode
Defines how to map the color values in the framebuffer to fit them in the [0 - 1] range.
Definition SoCamera.h:345
StereoMode getStereoMode() const
Queries the stereo mode.
void pointAt(const SbVec3f &targetPoint)
Sets the orientation of the camera so that it points toward the given target point while keeping the ...
Renders a scene graph using Open Inventor's Render Engine.
Computes bounding box of a scene.
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Counts number of...
Allows nodes in a graph to receive input events.
friend class SoPath
Definition SoNode.h:470
friend class SoAction
Definition SoNode.h:472
friend class SoCallbackAction
Definition SoNode.h:478
Intersects objects with a ray cast into scene.
Field containing an enumerated value.
Definition SoSFEnum.h:89
Field containing a floating-point value.
Definition SoSFFloat.h:78
Field containing a rotation.
Field containing a three-dimensional vector.
Definition SoSFVec3f.h:80
Traversal state.
Definition SoState.h:74
int SbBool
Boolean type.
Definition SbBase.h:87