Skip to content

Latest commit

 

History

History
48 lines (38 loc) · 1.36 KB

File metadata and controls

48 lines (38 loc) · 1.36 KB

ApplyCustomTexPart

Description

Applies the src object’s custom texture part partID to dest Overall part. For example apply PIO texture partID 100 to extrude’s Overall part. If the dest object does not support the src map type then a default mapping is used.

PROCEDURE ApplyCustomTexPart(
				srcObj  : HANDLE;
				destObj : HANDLE;
				partID  : LONGINT);
def vs.ApplyCustomTexPart(srcObj, destObj, partID):
    return None

Parameters

Name Type Description
srcObj HANDLE The source object from which to get the texture assignment and mapping.
destObj HANDLE The dest object to apply the texture and mapping to. The texture and mapping are applied to destObj’s Overall texture part.
partID LONGINT The custom texture part ID to apply from the src to the dest object.

Examples

ApplyCustomTexPart(parentPIO, pioSubObj, 100);
ApplyCustomTexPart(srcObj, destObj, 1);
import vs

# Applies the src object’s custom texture part partID to dest Overall part.
srcObj = vs.FSActLayer()  # handle to the first selected object on the active layer
destObj = vs.NextSObj(vs.FSActLayer())  # handle to the next selected object
partID = 1

vs.ApplyCustomTexPart(srcObj, destObj, partID)

Version

Availability: from Vectorworks 2017

Category