public bool isParallelTo(Plane anotherPlane) { Scientrace.UnitVector n1, n2; n1 = this.getNorm(); n2 = anotherPlane.getNorm(); return (n1.crossProduct(n2).length != 0); }