mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-08 05:42:07 -05:00
Cleanup last commit.
This commit is contained in:
parent
6db1f6c54c
commit
211635f206
5 changed files with 6 additions and 0 deletions
|
@ -742,6 +742,7 @@ var Point = this.Point = Base.extend({
|
||||||
* setting itself again on the setter that corresponds to the getter that
|
* setting itself again on the setter that corresponds to the getter that
|
||||||
* produced this LinkedPoint. See uses of LinkedPoint.create()
|
* produced this LinkedPoint. See uses of LinkedPoint.create()
|
||||||
* Note: This prototype is not exported.
|
* Note: This prototype is not exported.
|
||||||
|
*
|
||||||
* @ignore
|
* @ignore
|
||||||
*/
|
*/
|
||||||
var LinkedPoint = Point.extend({
|
var LinkedPoint = Point.extend({
|
||||||
|
|
|
@ -449,6 +449,7 @@ var Rectangle = this.Rectangle = Base.extend({
|
||||||
* through setting itself again on the setter that corresponds to the getter
|
* through setting itself again on the setter that corresponds to the getter
|
||||||
* that produced this LinkedRectangle. See uses of LinkedRectangle.create()
|
* that produced this LinkedRectangle. See uses of LinkedRectangle.create()
|
||||||
* Note: This prototype is not exported.
|
* Note: This prototype is not exported.
|
||||||
|
*
|
||||||
* @ignore
|
* @ignore
|
||||||
*/
|
*/
|
||||||
var LinkedRectangle = Rectangle.extend({
|
var LinkedRectangle = Rectangle.extend({
|
||||||
|
@ -469,6 +470,7 @@ var LinkedRectangle = Rectangle.extend({
|
||||||
* Provide a faster creator for Points out of two coordinates that
|
* Provide a faster creator for Points out of two coordinates that
|
||||||
* does not rely on Point#initialize at all. This speeds up all math
|
* does not rely on Point#initialize at all. This speeds up all math
|
||||||
* operations a lot.
|
* operations a lot.
|
||||||
|
*
|
||||||
* @ignore
|
* @ignore
|
||||||
*/
|
*/
|
||||||
create: function(owner, setter, x, y, width, height) {
|
create: function(owner, setter, x, y, width, height) {
|
||||||
|
|
|
@ -418,6 +418,7 @@ var Size = this.Size = Base.extend({
|
||||||
* setting itself again on the setter that corresponds to the getter that
|
* setting itself again on the setter that corresponds to the getter that
|
||||||
* produced this LinkedSize. See uses of LinkedSize.create()
|
* produced this LinkedSize. See uses of LinkedSize.create()
|
||||||
* Note: This prototype is not exported.
|
* Note: This prototype is not exported.
|
||||||
|
*
|
||||||
* @ignore
|
* @ignore
|
||||||
*/
|
*/
|
||||||
var LinkedSize = Size.extend({
|
var LinkedSize = Size.extend({
|
||||||
|
|
|
@ -655,6 +655,7 @@ var Item = this.Item = Base.extend({
|
||||||
* @param flags: Array of any of the following: 'objects', 'children',
|
* @param flags: Array of any of the following: 'objects', 'children',
|
||||||
* 'fill-gradients', 'fill-patterns', 'stroke-patterns', 'lines'.
|
* 'fill-gradients', 'fill-patterns', 'stroke-patterns', 'lines'.
|
||||||
* Default: ['objects', 'children']
|
* Default: ['objects', 'children']
|
||||||
|
*
|
||||||
* @ignore
|
* @ignore
|
||||||
*/
|
*/
|
||||||
transform: function(matrix, flags) {
|
transform: function(matrix, flags) {
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
/**
|
/**
|
||||||
* An internal version of Point that notifies its segment of each change
|
* An internal version of Point that notifies its segment of each change
|
||||||
* Note: This prototype is not exported.
|
* Note: This prototype is not exported.
|
||||||
|
*
|
||||||
* @ignore
|
* @ignore
|
||||||
*/
|
*/
|
||||||
var SegmentPoint = Point.extend({
|
var SegmentPoint = Point.extend({
|
||||||
|
|
Loading…
Reference in a new issue