pointvec/sources/scripts/path_close.js
2017-11-06 08:38:14 +13:00

9 lines
109 B
JavaScript

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