Struct opengex::structure::CameraObject [] [src]

pub struct CameraObject {
    pub params: ParamMap,
    pub colors: HashMap<String, Color>,
    pub textures: HashMap<String, Texture>,
}

A CameraObject structure contains data for a camera object.

Fields

A map of parameters associated with this camera.

The OpenGEX specification defined three parameters: "fov", "near" and "far". Any other parameters are application-specific.

A map of colors associated with this camera. The OpenGEX specification does not define any kinds of colors.

A map of textures associated with this camera. The OpenGEX specification does not define any kinds of textures.