Share

Projection

C++

enum Projection {
  kInheritProjection = 0,
  kPlanar,
  kBox,
  kCylinder,
  kSphere
};

File

acgimaterial.h

Members

Members Description
kInheritProjection Inherit projection method from current material's mapper
kPlanar Maps 2D image coordinates directly to XY coordinates
kBox Maps 2D image coordinates to plane normal to major axis
kCylinder Maps 2D image coordinates to cylinder along Z axis
kSphere Maps 2D image coordinates to sphere with poles on Z axis

Description

This enumeration provides values that describe the mapping projection of the mapper.

Was this information helpful?