[fix][minor] May correctly adjust first fin point, if it's within the mount's x-bounds
This commit is contained in:
parent
cc7a264ad7
commit
cff658e0ca
@ -424,7 +424,8 @@ public class FreeformFinSetConfig extends FinSetConfig {
|
|||||||
Point2D.Double point = getCoordinates(event);
|
Point2D.Double point = getCoordinates(event);
|
||||||
finset.setPoint(dragIndex, point.x, point.y);
|
finset.setPoint(dragIndex, point.x, point.y);
|
||||||
|
|
||||||
if(0 == dragIndex && 0 > point.x){
|
final double bodyFront = -finset.getAxialFront();
|
||||||
|
if(0 == dragIndex && bodyFront > point.x){
|
||||||
dragIndex = 1;
|
dragIndex = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user