base classes(3)
NAME
Base classes
Detailed Description
- Classes
- class SbBSPTree
The SbBSPTree class provides a binary space partitioning container.
- This class can be used to organize searches for 3D points or normals in a set in O(log(n)) time. "
- class SbBox2s
- The SbBox2s class is a 2 dimensional box with short integer coordinates.
- This box class is used by other classes in Coin for data exchange. It
provides storage for two box corners with short integer coordinates,
which is among other things useful for representing screen or canvas
areas in absolute window coordinates. " - class SbBox2i32
- The SbBox2i32 class is a 2 dimensional box with int32_t coordinates.
- This box class is used by other classes in Coin for data exchange. It
provides storage for two box corners with int32_t coordinates. " - class SbBox2f
- The SbBox2f class is a 2 dimensional box with floating point corner coordinates.
- This box class is used by many other classes in Coin for data exchange
and storage. It provides two box corners with floating point
coordinates, which is among other things useful for representing screen or canvas dimensions in normalized coordinates. " - class SbBox2d
- The SbBox2d class is a 2 dimensional box with double precision corner coordinates.
- This box class is used by many other classes in Coin for data exchange
and storage. It provides two box corners with double precision
coordinates, which is among other things useful for representing screen or canvas dimensions in normalized coordinates. " - class SbBox3s
- The SbBox3s class is a 3 dimensional box with short integer coordinates.
- This box class is used by other classes in Coin for data exchange. It
provides storage for two box corners with short integer coordinates,
which is among other things useful for representing screen or canvas
areas in absolute window coordinates. " - class SbBox3f
- The SbBox3f class is an abstraction for an axis aligned 3 dimensional box.
- This box abstraction class is used by other entities in the Coin
library for data exchange and storage. It provides a representation of the defining corners of a box in 3D space, with the sides aligned with the 3 principal axes. " - class SbBox3d
- The SbBox3d class is an abstraction for an axis aligned 3 dimensional box.
- This box abstraction class is used by other entities in the Coin
library for data exchange and storage. It provides a representation of the defining corners of a box in 3D space, with the sides aligned with the 3 principal axes. " - class SbClip
- The SbClip class is a generic polygon clipper class.
- It is used by first adding all vertices in the polygon, and then
clipping against any number of planes. If you need to supply additional information per vertex (e.g. texture coordinates), you should supply a callback in the constructor, and a pointer to your vertex structure in addVertex(). For every new vertex created, the callback is called with the line being clipped, including the pointers to your vertex
structures and the position of the new (clipped against some plane)
vertex. You should then create a new vertex structure, calculate your
data (e.g. a new texture coordinate) and return a pointer to this
structure. " - class SbColor
- The SbColor class contains the red, green and blue components which make up a color value.
- This class is used within other classes in Coin. It inherits the
SbVec3f class, interpreting the 3 component vector as a vector in the RGB cube where the red, green and blue components corresponds to x, y
and z respectively. " - class SbColor4f
- The SbColor4f class contains the red, green, blue and alpha components which make up a color value.
- This class is used internally within other classes in Coin. It contains
a 4 component vector as a position in the RGB cube with an additional
transparency value. " - class SbCylinder
- The SbCylinder class is a representation of a cylinder.
- This class is used within other classes in Coin. It contains data to
represent a cylinder by an axis and a radius. The cylinder has no
length/height value, which means it is treated as of infinite length. " - class SbDict
- The SbDict class organizes a dictionary of keys and values.
- It uses hashing to quickly insert and find entries in the dictionary.
An entry consists of an unique key and a generic pointer. " - class SbImage
- The SbImage class is an abstract datatype for 2D and 3D images.
- Be aware that this class is an extension for Coin, and it is not
available in the original SGI Open Inventor v2.1 API. " - class SbLine
- The SbLine class represents a line in 3D space.
- SbLine provides a way of specifying a directed line, through a 3D point (origin) and a vector direction in 3D space. "
- class SbMatrix
- The SbMatrix class is a 4x4 dimensional representation of a matrix.
- SbMatrix is used by many other classes in Coin. It provides storage for a 4x4 matrix of single-precision floating point values. "
- class SbDPMatrix
- The SbDPMatrix class is a 4x4 dimensional representation of a doubleprecision matrix.
- This class is like the SbMatrix class, but uses double-precision
floating point values for its elements. For more class documentation,
see SbMatrix. " - class SbName
- The SbName class stores strings by reference.
- The class is used by Coin for storing keywords, names and other
strings. They are stored in a manner where identical strings are
guaranteed to map to the same memory address (as returned by the
SbName::getString() method). " - class SbPlane
- The SbPlane class represents a plane in 3D space.
- SbPlane is used by many other classes in Coin. It provides a way of representing a plane, specified by a plane normal vector and a distance from the origin of the coordinate system. "
- class SbRotation
- The SbRotation class represents a rotation in 3D space.
- SbRotation is used extensively throughout the Coin library. "
- class SbSphere
- The SbSphere class is a representation of a sphere.
- This class is used within many other classes in Coin. It contains the
data neccessary to represent a sphere (a 3D point and a radius). " - class SbString
- The SbString class is a string class with convenience functions for string operations.
- This is the class used for storing and working with character strings.
It automatically takes care of supporting all the 'bookkeeping' tasks
usually associated with working with character strings, like memory
allocation and deallocation etc. " - class SbTesselator
- The SbTesselator class is used to tessellate polygons into triangles.
- SbTesselator is used within Coin to split polygons into triangles. It
handles concave polygons, does Delaunay triangulation and avoids
generating self-intersecting triangles. " - class SbTime
- The SbTime class instances represents time values.
- SbTime is a convenient way of doing system independent representation and calculations on time values of high resolution. "
- class SbVec2b
- The SbVec2b class is a 2 dimensional vector with 8-bit integer coordinates.
- class SbVec2ub
- The SbVec2ub class is a 2 dimensional vector with unsigned 8-bit integer coordinates.
- class SbVec2s
- The SbVec2s class is a 2 dimensional vector with short integer coordinates.
- This vector class is used by many other classes in Coin. It provides
storage for a vector in 2 dimensions as well as simple integer
arithmetic operations. " - class SbVec2us
- The SbVec2us class is a 2 dimensional vector with unsigned short integer coordinates.
- class SbVec2i32
- The SbVec2i32 class is a 2 dimensional vector with 32-bit integer coordinates.
- class SbVec2ui32
- The SbVec2ub class is a 2 dimensional vector with unsigned 32-bit integer coordinates.
- class SbVec2f
- The SbVec2f class is a 2 dimensional vector with floating point coordinates.
- class SbVec2d
- The SbVec2d class is a 2 dimensional vector with double precision floating point coordinates.
- class SbVec3b
- The SbVec3b class is a 3 dimensional vector with 8-bit integer coordinates.
- class SbVec3ub
- The SbVec3ub class is a 3 dimensional vector with unsigned 8-bit integer coordinates.
- class SbVec3s
- The SbVec3s class is a 3 dimensional vector with short integer coordinates.
- class SbVec3us
- The SbVec3us class is a 3 dimensional vector with unsigned short integer coordinates.
- class SbVec3i32
- The SbVec3i32 class is a 3 dimensional vector with 32-bit integer coordinates.
- class SbVec3ui32
- The SbVec3ui32 class is a 3 dimensional vector with unsigned 33-bit integer coordinates.
- class SbVec3f
- The SbVec3f class is a 3 dimensional vector with floating point coordinates.
- class SbVec3d
- The SbVec3d class is a 3 dimensional vector with double precision floating point coordinates.
- class SbVec4b
- The SbVec4b class is a 4 dimensional vector with 8-bit integer coordinates.
- class SbVec4ub
- The SbVec4ub class is a 4 dimensional vector with unsigned 8-bit integer coordinates.
- class SbVec4s
- The SbVec4s class is a 4 dimensional vector with short integer coordinates.
- class SbVec4us
- The SbVec4us class is a 4 dimensional vector with unsigned short integer coordinates.
- class SbVec4i32
- The SbVec4i32 class is a 4 dimensional vector with 32-bit integer coordinates.
- class SbVec4ui32
- The SbVec4ui32 class is a 4 dimensional vector with unsigned 32-bit integer coordinates.
- class SbVec4f
- The SbVec4f class is a 4 dimensional vector with floating point coordinates.
- class SbVec4d
- The SbVec4d class is a 4 dimensional vector with double precision floating point coordinates.
- class SbViewVolume
- The SbViewVolume class is a viewing volume in 3D space.
- This class contains the necessary information for storing a view
volume. It has methods for projection of primitives into the 3D volume from 2D points in the projection plane or vice versa, doing camera
transforms, view volume transforms, etc. " - class SbViewportRegion
- The SbViewportRegion class is a viewport within a full window.
- The SbViewportRegion class contains information to represent a subview within a window. It stores information about the origin and size of the subview, aswell as the size of the underlying 'full' window. "
- class SbXfBox3f
- The SbXfBox3f class is a 3 dimensional box with floating point coordinates and an attached transformation.
- This box class is used by many other classes in Coin for data exchange.
It provides storage for two box corners with floating point
coordinates, and for a floating point 4x4 transformation matrix. " - class SbXfBox3d
- The SbXfBox3d class is a 3 dimensional box with double precision coordinates and an attached transformation.
- It provides storage for two box corners with double precision floating
point coordinates, and for a double precision 4x4 transformation
matrix. " - class SbIntList
- The SbIntList class is a container for integer list arrays.
- class SbList< Type >
- The SbList class is a template container class for lists.
- SbList is an extension of the Coin library versus the original Open
Inventor API. Open Inventor handles most list classes by inheriting the
SbPList class, which contains an array of generic void* pointers. By
using this template-based class instead, we can share more code and
make the list handling code more typesafe. " - class SbPList
- The SbPList class is a container class for void pointers.
- class SbStringList
- The SbStringList class is a container for arrays of SbString pointers.
- Note that upon using the equality and inequality operators, the strings themselves are not compared, only the pointer values. "
- class SbVec3fList
- The SbVec3fList class is a container for arrays of SbVec3f pointers.
- Note that upon using the equality and inequality operators, the SbVec3f objects themselves are not compared, only the pointer values. "