15 lines
194 B
JavaScript
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 [];
|
|
}
|
|
} |