Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 491405
Collapse All | Expand All

(-)a/org.eclipse.gef4.geometry/src/org/eclipse/gef4/geometry/planar/Line.java (-1 / +1 lines)
Lines 176-182 Link Here
176
	public Angle getDirectionCCW() {
176
	public Angle getDirectionCCW() {
177
		Point start = getP1();
177
		Point start = getP1();
178
		Point end = getP2();
178
		Point end = getP2();
179
		return Angle.fromRad(Math.atan2(end.y - start.y, end.x - start.y));
179
		return Angle.fromRad(Math.atan2(end.y - start.y, end.x - start.x));
180
	}
180
	}
181
181
182
	/**
182
	/**

Return to bug 491405