This .NET enum wraps the AcGiMapper::Tiling ObjectARX enum. This enumeration provides values that describe the tiling method of the mapper.
Public Enum Tiling InheritTiling Tile Crop Clamp Mirror End Enum
public enum Tiling {
InheritTiling,
Tile,
Crop,
Clamp,
Mirror
}
| Members | Description |
|---|---|
| InheritTiling | Inherit tiling method from current material's mapper. |
| Tile | Repeats material map along image axis. |
| Crop | Crops material map below 0.0 and above 1.0 in image axis. |
| Clamp | Clamps material map to between 0.0 and 1.0 in image axis. |
| Mirror | The grip operation is mirror. |