Share

Tiling

C++

enum Tiling {
  kInheritTiling = 0,
  kTile,
  kCrop,
  kClamp,
  kMirror
};

File

acgimaterial.h

Members

Members Description
kInheritTiling Inherit tiling method from current material's mapper
kTile Repeats material map along image axis
kCrop Crops material map below 0.0 and above 1.0 in image axis
kClamp Clamps material map to between 0.0 and 1.0 in image axis
kMirror The grip operation is mirror

Description

This enumeration provides values that describe the tiling method of the mapper.

Was this information helpful?