2017-11-05 00:33:04 -04:00
|
|
|
function Path_Close()
|
|
|
|
{
|
2017-11-21 16:24:25 -05:00
|
|
|
this.__type_ = "Path_Close";
|
2017-11-05 14:38:14 -05:00
|
|
|
this.name = "close";
|
2017-11-21 16:24:25 -05:00
|
|
|
|
2017-11-05 00:33:04 -04:00
|
|
|
this.to_segment = function(prev)
|
|
|
|
{
|
|
|
|
return "Z ";
|
|
|
|
}
|
2017-11-13 13:52:53 -05:00
|
|
|
|
|
|
|
this.handles = function()
|
|
|
|
{
|
|
|
|
return [];
|
|
|
|
}
|
2017-11-05 00:33:04 -04:00
|
|
|
}
|