Skip to content

Commit

Permalink
Fixed issue #505.
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsschmidt1337 committed Feb 27, 2017
1 parent 4283ee1 commit 8d05340
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
4 changes: 0 additions & 4 deletions src/org/nschmidt/ldparteditor/data/VM26LineIntersector.java
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,4 @@ public void intersectionVerticesBetweenLines3D() {
updateUnsavedStatus();
}
}

public void intersectionVerticesBetweenLines2D() {
// FIXME Needs implementation!
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,6 @@ public Vector3d getScreenCoordinatesFrom3D(BigDecimal X, BigDecimal Y, BigDecima
return result;
}


/**
* Transforms screen coordinates to 3D space coordinates
* (needs viewport inverse)
Expand Down Expand Up @@ -480,22 +479,22 @@ public String getPerspectiveString(Perspective perspective) {
public float getZoom_exponent() {
return zoom_exponent;
}

public void setZoom_exponent(float zoom_exponent) {
this.zoom_exponent = zoom_exponent;
}

public Vector4f getOffset() {
return new Vector4f(offset.x, offset.y, offset.z, offset.w);
}

public void setOffset(Vector4f off) {
offset.x = off.x;
offset.y = off.y;
offset.z = off.z;
offset.w = off.w;
}

private void syncZoom() {
if (c3d.isSyncZoom()) {
for (OpenGLRenderer renderer : Editor3DWindow.getRenders()) {
Expand Down

0 comments on commit 8d05340

Please sign in to comment.