包含数字列表的字符串,可以用空格、逗号或任何允许的非数字分隔).
属性数据
通过连接字符串中指定的点来创建模型。模型可能处于闭合状态,也可能保持打开状态.
Example:
var c = new vjgeo.models.Polyline(false, '-10 0 10 0 0 20'); // 3 coordinates to form a polyline
Flag to specify if last point should connect to the first point.
包含数字列表的字符串,可以用空格、逗号或任何允许的非数字分隔).
属性数据
通过连接数字数组中指定的点来创建模型。模型将被“闭合”——即最后一个点将连接到第一个点.
Example:
var c = new vjgeo.models.Polyline([-10, 0, 10, 0, 0, 20]); // 3 coordinates to form a triangle
Array of coordinates.
属性数据
通过连接数字数组中指定的点来创建模型。模型可能处于闭合状态,也可能保持打开状态.
Example:
var c = new vjgeo.models.Polyline(false, [-10, 0, 10, 0, 0, 20]); // 3 coordinates to form a polyline
Flag to specify if last point should connect to the first point.
Array of coordinates.
属性数据
通过连接点数组中指定的点来创建模型。模型可能处于闭合状态,也可能保持打开状态.
Example:
var c = new vjgeo.models.Polyline(false, [[-10, 0], [10, 0], [0, 20]]); // 3 coordinates left open
Flag to specify if last point should connect to the first point.
Array of IPoints.
属性数据
多线.
Example:
var c = new vjgeo.models.Polyline(false, [[[-10, 0], [10, 0], [0, 20]],[[-20, 0], [20, 0], [10, 20]]]); // 3 coordinates left open
Array of lines.
属性数据
Generated using TypeDoc
通过连接字符串中指定的点来创建模型。模型将被“闭合”——即最后一个点将连接到第一个点.
Example:
var c = new vjgeo.models.Polyline('-10 0 10 0 0 20'); // 3 coordinates to form a triangle