pointvec/sources/scripts/path_bezier.js

42 lines
951 B
JavaScript
Raw Normal View History

2017-11-04 19:59:11 -04:00
function Path_Bezier(from,to,end)
{
2017-11-21 16:24:25 -05:00
this.__serialized_name__ = "Path_Bezier";
2017-11-05 14:38:14 -05:00
this.name = "bezier";
2017-11-21 16:24:25 -05:00
2017-11-04 19:59:11 -04:00
this.from = from;
this.to = to;
this.end = end;
this.to_segment = function(prev)
{
var html = ""
2017-12-26 17:12:23 -05:00
if(!this.end){ return ""; }
2017-11-04 19:59:11 -04:00
2017-11-05 14:15:31 -05:00
if(!prev || (!prev.to && !prev.end)){
2017-11-12 16:47:34 -05:00
html += "M"+this.from.scale(dotgrid.scale)+" ";
2017-11-04 19:59:11 -04:00
}
else if(prev){
2017-11-05 00:58:53 -04:00
if(prev.end){
if(!prev.end.is_equal(this.from)){
2017-11-12 16:47:34 -05:00
html += "M"+this.from.scale(dotgrid.scale)+" ";
2017-11-05 00:58:53 -04:00
}
2017-11-04 19:59:11 -04:00
}
2017-11-05 00:58:53 -04:00
else if(prev.to){
if(!prev.to.is_equal(this.from)){
2017-11-12 16:47:34 -05:00
html += "M"+this.from.scale(dotgrid.scale)+" ";
2017-11-05 00:58:53 -04:00
}
2017-11-04 19:59:11 -04:00
}
}
2017-11-12 16:47:34 -05:00
return html += "Q"+this.to.scale(dotgrid.scale)+" "+this.end.scale(dotgrid.scale)+" "
2017-11-04 19:59:11 -04:00
}
2017-11-12 22:54:56 -05:00
this.handles = function()
{
var a = [];
if(this.from){ a.push(this.from); }
if(this.to){ a.push(this.to); }
if(this.end){ a.push(this.end); }
return a;
}
2017-11-04 19:59:11 -04:00
}