@@ -140,8 +140,8 @@ var EDGE_FSHADER_SOURCE =
140
140
varying vec2 posJudge;
141
141
142
142
float box(float x, float y){
143
- float xc = clamp ( x - centerPoint.x, -1.0 , 1.0) ;
144
- float yc = clamp ( y - centerPoint.y, -1.0 , 1.0) ;
143
+ float xc = x - centerPoint.x;
144
+ float yc = y - centerPoint.y;
145
145
vec2 point = vec2(xc, yc);
146
146
float right = rightTopPoint.x;
147
147
float top = rightTopPoint.y;
@@ -291,9 +291,11 @@ Component({
291
291
gl . useProgram ( this . rectEdgeProgram )
292
292
gl . program = this . rectEdgeProgram
293
293
294
- for ( var i = 0 ; i < anchor2DList . length ; i ++ ) {
295
- onDrawRectEdge ( gl , anchor2DList [ i ] . origin . x , anchor2DList [ i ] . origin . y , anchor2DList [ i ] . size . width , anchor2DList [ i ] . size . height )
296
- }
294
+ // for (var i = 0; i < anchor2DList.length; i++) {
295
+ // onDrawRectEdge(gl, anchor2DList[i].origin.x, anchor2DList[i].origin.y, anchor2DList[i].size.width, anchor2DList[i].size.height)
296
+ // }
297
+
298
+ onDrawRectEdge ( gl , anchor2DList [ 0 ] . origin . x , anchor2DList [ 0 ] . origin . y , anchor2DList [ 0 ] . size . width , anchor2DList [ 0 ] . size . height )
297
299
}
298
300
} ,
299
301
} ,
0 commit comments