Road_GetStationCount Roadway Interface Library 
Vectorworks 2015

VectorScript Declaration:

FUNCTION   Road_GetStationCount
( hRoadwayObject:HANDLE ) :LONGINT ;

Python:

def  vs.Road_GetStationCount(hRoadwayObject):
   return LONGINT

Description:

Return count of stations of the Roadway (Poly) object.

説明

道路(曲線)オブジェクトの測点の数を返します。



  Road_GetStationPoint Roadway Interface Library 
Vectorworks 2015

VectorScript Declaration:

PROCEDURE   Road_GetStationPoint
(   hRoadwayObject :HANDLE;
    index :LONGINT;
  VAR  RETURNX :REAL;
  VAR  RETURNY :REAL;
  VAR  RETURNZ :REAL
) ;

Python:

def  vs.Road_GetStationPoint(hRoadwayObject, index):
   return RETURN

Description:

Return 3D point of the station that is related with the Roadway (Poly) object.

説明

道路(曲線)オブジェクトの測点の3D座標を返します。



  Road_InsertStation Roadway Interface Library 
Vectorworks 2015

VectorScript Declaration:

PROCEDURE   Road_InsertStation
(   hRoadwayObject :HANDLE;
    pointX :REAL;
    pointY :REAL;
    pointZ :REAL
) ;

Python:

def  vs.Road_InsertStation(hRoadwayObject, point):
   return None

Description:

Insert a new station to the Roadway (Poly) object.

説明

道路(曲線)オブジェクトに新しい測点を配置します。