Sha256: e897478f8f7daf0f1fe4e88bbb5a9591f71a63610068230241fb4bc15bbc6af1

Contents?: true

Size: 1.02 KB

Versions: 4

Compression:

Stored size: 1.02 KB

Contents

//>>built
define("dojox/drawing/stencil/Ellipse",["dojo/_base/lang","../util/oo","./_Base","../manager/_registry"],function(_1,oo,_2,_3){
var _4=oo.declare(_2,function(_5){
},{type:"dojox.drawing.stencil.Ellipse",anchorType:"group",baseRender:true,dataToPoints:function(o){
o=o||this.data;
var x=o.cx-o.rx,y=o.cy-o.ry,w=o.rx*2,h=o.ry*2;
this.points=[{x:x,y:y},{x:x+w,y:y},{x:x+w,y:y+h},{x:x,y:y+h}];
return this.points;
},pointsToData:function(p){
p=p||this.points;
var s=p[0];
var e=p[2];
this.data={cx:s.x+(e.x-s.x)/2,cy:s.y+(e.y-s.y)/2,rx:(e.x-s.x)*0.5,ry:(e.y-s.y)*0.5};
return this.data;
},_create:function(_6,d,_7){
this.remove(this[_6]);
this[_6]=this.container.createEllipse(d).setStroke(_7).setFill(_7.fill);
this._setNodeAtts(this[_6]);
},render:function(){
this.onBeforeRender(this);
this.renderHit&&this._create("hit",this.data,this.style.currentHit);
this._create("shape",this.data,this.style.current);
}});
_1.setObject("dojox.drawing.stencil.Ellipse",_4);
_3.register({name:"dojox.drawing.stencil.Ellipse"},"stencil");
return _4;
});

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
dojox-rails-0.14.0 vendor/assets/javascripts/dojox/drawing/stencil/Ellipse.js
dojox-rails-0.13.0 vendor/assets/javascripts/dojox/drawing/stencil/Ellipse.js
dojox-rails-0.12.0 vendor/assets/javascripts/dojox/drawing/stencil/Ellipse.js
dojox-rails-0.11.0 vendor/assets/javascripts/drawing/stencil/Ellipse.js