pointvec/sources/scripts/path_close.js
2017-11-14 07:52:53 +13:00

14 lines
161 B
JavaScript

function Path_Close()
{
this.name = "close";
this.to_segment = function(prev)
{
return "Z ";
}
this.handles = function()
{
return [];
}
}