Merge pull request #834 from pdid17/plane-constructor

Add a convenience constructor to Plane
monkanim
empirephoenix 7 years ago committed by GitHub
commit d300f74f26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      jme3-core/src/main/java/com/jme3/math/Plane.java

@ -1,5 +1,5 @@
/*
* Copyright (c) 2009-2012 jMonkeyEngine
* Copyright (c) 2009-2018 jMonkeyEngine
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@ -43,6 +43,7 @@ import java.util.logging.Logger;
*
* @author Mark Powell
* @author Joshua Slack
* @author Ian McClean
*/
public class Plane implements Savable, Cloneable, java.io.Serializable {
@ -92,6 +93,16 @@ public class Plane implements Savable, Cloneable, java.io.Serializable {
this.constant = constant;
}
/**
* Constructor instantiates a new <code>Plane</code> object.
*
* @param normal The normal of the plane.
* @param displacement A vector representing a point on the plane.
*/
public Plane(Vector3f normal, Vector3f displacement) {
this(normal, displacement.dot(normal));
}
/**
* <code>setNormal</code> sets the normal of the plane.
*

Loading…
Cancel
Save