diff --git a/jme3-core/src/main/java/com/jme3/math/Plane.java b/jme3-core/src/main/java/com/jme3/math/Plane.java index e8d1b328e..81dd3a5cb 100644 --- a/jme3-core/src/main/java/com/jme3/math/Plane.java +++ b/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 Plane 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)); + } + /** * setNormal sets the normal of the plane. *