mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-22 07:19:57 -05:00
Replace calls to getters with their internal property in all cases where getter does not perform additional magic.
This commit is contained in:
parent
016f4c15aa
commit
346493fb7c
1 changed files with 6 additions and 6 deletions
|
@ -30,17 +30,17 @@ CurveLocation = Base.extend({
|
||||||
if (!this._segment) {
|
if (!this._segment) {
|
||||||
var parameter = this.getParameter();
|
var parameter = this.getParameter();
|
||||||
if (parameter == 0) {
|
if (parameter == 0) {
|
||||||
this._segment = curve.getSegment1();
|
this._segment = curve._segment1;
|
||||||
} else if (parameter == 1) {
|
} else if (parameter == 1) {
|
||||||
this._segment = curve.getSegment2();
|
this._segment = curve._segment2;
|
||||||
} else if (parameter == -1) {
|
} else if (parameter == -1) {
|
||||||
return null;
|
return null;
|
||||||
} else {
|
} else {
|
||||||
// Determine the closest segment by comparing curve lengths
|
// Determine the closest segment by comparing curve lengths
|
||||||
var rightCurve = curve.clone().divide(parameter);
|
var rightCurve = curve.clone().divide(parameter);
|
||||||
this._segment = rightCurve.getLength() > curve.getLength() / 2
|
this._segment = rightCurve.getLength() > curve.getLength() / 2
|
||||||
? curve.getSegment1()
|
? curve._segment1
|
||||||
: curve.getSegment2();
|
: curve._segment2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return this._segment;
|
return this._segment;
|
||||||
|
@ -57,7 +57,7 @@ CurveLocation = Base.extend({
|
||||||
* The item this curve belongs to, if any.
|
* The item this curve belongs to, if any.
|
||||||
*/
|
*/
|
||||||
getItem: function() {
|
getItem: function() {
|
||||||
return this._curve && this._curve.getPath();
|
return this._curve && this._curve._path;
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -73,7 +73,7 @@ CurveLocation = Base.extend({
|
||||||
* by this object.
|
* by this object.
|
||||||
*/
|
*/
|
||||||
getOffset: function() {
|
getOffset: function() {
|
||||||
var path = this._curve && this._curve.getPath();
|
var path = this._curve && this._curve._path;
|
||||||
return path && path._getOffset(this);
|
return path && path._getOffset(this);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue