mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-09 14:22:08 -05:00
17 lines
277 B
JavaScript
17 lines
277 B
JavaScript
/** @constructor */
|
|
function Circle(){}
|
|
|
|
/**
|
|
@constructor
|
|
@memberOf Circle#
|
|
*/
|
|
Circle.prototype.Tangent = function(){};
|
|
|
|
// renaming Circle#Tangent to Circle#Circle#Tangent
|
|
|
|
/**
|
|
@memberOf Circle#Tangent#
|
|
*/
|
|
Circle.prototype.Tangent.prototype.getDiameter = function(){};
|
|
|
|
|