Field

Changeset 136:fe945ae66d23

Show
Ignore:
Timestamp:
08/01/2008 10:31:39 AM (5 months ago)
Author:
marc@f1.local
branch:
default
Message:

potential fix for #85

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • development/java/field/core/plugins/python/OutputInsertsOnSheet.java

    r63 r136  
    3434import field.math.abstraction.iProvider; 
    3535import field.math.abstraction.iProviderAcceptor; 
    36 import field.math.linalg.Vector2; 
    3736import field.math.linalg.iToFloatArray; 
    3837import field.math.util.ComplexCubicFloat; 
     
    7877//                      return false; 
    7978                        float nearEdge = (float) Math.min(Math.min(Math.abs(arg0.getX() - bounds.x), Math.abs(arg0.getX() - bounds.x - bounds.w)), Math.min(Math.abs(arg0.getY() - bounds.y), Math.abs(arg0.getY() - bounds.y - bounds.h))); 
    80                         return arg0.isShiftDown() && nearEdge < 4 || !bounds.isInside(new Vector2(arg0.getX(), arg0.getY())); 
     79                        return arg0.isShiftDown() ;//&& nearEdge < 4 || !bounds.isInside(new Vector2(arg0.getX(), arg0.getY())); 
    8180                } 
    8281        }