Share

AutoTransform

C++

enum AutoTransform {
  kInheritAutoTransform = 0x0,
  kNone = 0x1,
  kObject = 0x2,
  kModel = 0x4
};

File

acgimaterial.h

Members

Members Description
kInheritAutoTransform Inherit auto transform method from current material's mapper
kNone No automatic transform or identity
kObject Multiply the mapper transform by a transform that scales by the bounds of the current object and translates to the origin of the current object
kModel Multiply the mapper transform by the model (block) transform

Description

This enumeration provides values that describe the automatic transform mode of the mapper.

Note

A logical OR of any combination of AutoTransform enumerators is legal. However, kInheritAutoTransform will be ignored if any other enum value is present, and kNone will be ignored if either kObject or kModel is present.

Was this information helpful?