pointvec/sources/scripts/path_close.js
2017-11-21 22:24:25 +01:00

15 lines
194 B
JavaScript

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