Namespaces | |
| namespace | shaders |
Classes | |
| class | ClippingRange |
| Defines the near and far clipping planes for frustum-based (OpenGL) RenderEngine cameras. More... | |
| class | ColorRenderCamera |
| Collection of camera properties for cameras to be used with color/label images. More... | |
| class | DepthRange |
| Defines a depth sensor's functional range. More... | |
| class | DepthRenderCamera |
| Collection of camera properties for cameras to be used with depth images. More... | |
| struct | LightParameter |
| Light parameter for supporting RenderEngine implementations. More... | |
| class | RenderCameraCore |
| Collection of core parameters for modeling a pinhole-model camera in a RenderEngine. More... | |
| class | RenderEngine |
| The engine for performing rasterization operations on geometry. More... | |
| class | RenderLabel |
| Class representing object "labels" for rendering. More... | |
Enumerations | |
| enum class | LightType { kPoint = 1 , kSpot = 2 , kDirectional = 3 } |
| Specification of the type of light. More... | |
| enum class | LightFrame { kWorld = 0 , kCamera = 1 } |
| Specifies the frame in which a light is fixed. More... | |
Functions | |
| std::string_view | to_string (const LightType &t) |
| Returns the LightType as a string. | |
| std::ostream & | operator<< (std::ostream &out, const LightType &t) |
| (Deprecated.) | |
| LightType | light_type_from_string (const std::string &spec) |
| Instantiates a LightType from its string representation. | |
| std::string_view | to_string (const LightFrame &f) |
| Returns the LightFrame as a string. | |
| std::ostream & | operator<< (std::ostream &out, const LightFrame &f) |
| (Deprecated.) | |
| LightFrame | light_frame_from_string (const std::string &spec) |
| Instantiates a LightFrame from its string representation. | |
| std::ostream & | operator<< (std::ostream &out, const RenderLabel &label) |
| (Deprecated.) | |
| std::string | to_string (const RenderLabel &label) |
| (Deprecated.) | |
|
strong |
|
strong |
Specification of the type of light.
| Enumerator | |
|---|---|
| kPoint | |
| kSpot | |
| kDirectional | |
| LightFrame light_frame_from_string | ( | const std::string & | spec | ) |
Instantiates a LightFrame from its string representation.
| spec | Must be one of 'world' or 'camera'. |
| if | spec is an unrecognized string. |
| LightType light_type_from_string | ( | const std::string & | spec | ) |
Instantiates a LightType from its string representation.
| spec | Must be one of 'point', 'spot', or 'directional'. |
| if | spec is an unrecognized string. |
| std::ostream & operator<< | ( | std::ostream & | out, |
| const LightFrame & | f ) |
(Deprecated.)
| std::ostream & operator<< | ( | std::ostream & | out, |
| const LightType & | t ) |
(Deprecated.)
| std::ostream & operator<< | ( | std::ostream & | out, |
| const RenderLabel & | label ) |
(Deprecated.)
| std::string_view to_string | ( | const LightFrame & | f | ) |
Returns the LightFrame as a string.
| std::string to_string | ( | const RenderLabel & | label | ) |
(Deprecated.)