2017-11-05 17:33:04 +13:00
|
|
|
function Path_Close()
|
|
|
|
|
{
|
2017-11-06 08:38:14 +13:00
|
|
|
this.name = "close";
|
|
|
|
|
|
2017-11-05 17:33:04 +13:00
|
|
|
this.to_segment = function(prev)
|
|
|
|
|
{
|
|
|
|
|
return "Z ";
|
|
|
|
|
}
|
2017-11-14 07:52:53 +13:00
|
|
|
|
|
|
|
|
this.handles = function()
|
|
|
|
|
{
|
|
|
|
|
return [];
|
|
|
|
|
}
|
2017-11-05 17:33:04 +13:00
|
|
|
}
|