mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-23 21:56:10 +03:00
18 lines
277 B
JavaScript
18 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(){};
|
||
|
|
||
|
|