| Previous CloneSet | Next CloneSet | Back to Main Report |
| Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
|---|---|---|---|---|
| 12 | 2 | 1 | 0.985 | StatementList[4] |
| Clone Abstraction | Parameter Bindings |
| Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
|---|---|---|---|
| 1 | 10 | 874 | Closure/closure/goog/ui/imagelessroundedcorner.js |
| 2 | 12 | 924 | Closure/closure/goog/ui/imagelessroundedcorner.js |
| ||||
// Draw the defined path.
var path= this.graphics_.createPath( );
path.moveTo(this.start_[0], this.start_[1]);
path.arc(this.xCenter_,
this.yCenter_,
this.radius_,
this.radius_,
this.startAngle_,
clockwise
? 90
: -90, true);
path.lineTo(this.end_[0], this.end_[1]);
|
| ||||
var path= this.graphics_.createPath( );
// Draw out the path according to the points just defined.
path.moveTo(this.start_[0], this.start_[1]);
path.arc(this.xCenter_,
this.yCenter_,
this.radius_,
this.radius_,
this.startAngle_,
clockwise
? 90
: -90, true);
path.lineTo(arcEnd[0], arcEnd[1]);
|
| |||
// Draw the defined path.
var path=this.graphics_.createPath( );
// Draw out the path according to the points just defined.
path.moveTo(this.start_[0],this.start_[1]);
path.arc(this.xCenter_,this.yCenter_,this.radius_,this.radius_,this.startAngle_,clockwise
?90
: -90, true);
path.lineTo( [[#variable609a6000]][0], [[#variable609a6000]][1]);
|
| CloneAbstraction |
| Parameter Index | Clone Instance | Parameter Name | Value |
|---|---|---|---|
| 1 | 1 | [[#609a6000]] | arcEnd |
| 1 | 2 | [[#609a6000]] | this.end_ |