/* * $Id$ * * Copyright (C) 2013 Christophe BOHRHAUER. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * This program is free software; you can redistribute it and/or modify */ package org.arakhne.afc.math.geometry.d3.continuous; import org.arakhne.afc.math.geometry.d3.Point3D; import org.junit.Test; /** * @author $Author: sgalland$ * @version $FullVersion$ * @mavengroupid $GroupId$ * @mavenartifactid $ArtifactId$ */ @SuppressWarnings("all") public class PlaneYZ4fTest extends AbstractPlane3DTestCase<AbstractPlaneYZ4F> { @Override protected AbstractPlaneYZ4F createPlane() { throw new UnsupportedOperationException(); } @Test @Override public void testClone() { throw new UnsupportedOperationException(); } @Test @Override public void distanceToPoint3D() { throw new UnsupportedOperationException(); } @Test public void distanceToDoubleDoubleDouble() { throw new UnsupportedOperationException(); } @Test @Override public void distanceToPlane3D() { throw new UnsupportedOperationException(); } @Test @Override public void getIntersectionPlane3D() { throw new UnsupportedOperationException(); } @Test @Override public void getIntersectionSegment3D() { throw new UnsupportedOperationException(); } @Test @Override public void getProjectionPoint3D() { throw new UnsupportedOperationException(); } @Test public void getProjectionDoubleDoubleDouble() { throw new UnsupportedOperationException(); } @Test @Override public void isValid() { throw new UnsupportedOperationException(); } @Test @Override public void classifiesPlane3D() { throw new UnsupportedOperationException(); } @Test @Override public void classifiesPoint3D() { throw new UnsupportedOperationException(); } @Test @Override public void classifiesSphere3f() { throw new UnsupportedOperationException(); } @Test @Override public void classifiesAlignedBox3f() { throw new UnsupportedOperationException(); } @Test @Override public void intersectsPlane3D() { throw new UnsupportedOperationException(); } @Test @Override public void intersectsPoint3D() { throw new UnsupportedOperationException(); } @Test @Override public void intersectsSphere3f() { throw new UnsupportedOperationException(); } @Test @Override public void intersectsAlignedBox3f() { throw new UnsupportedOperationException(); } @Test @Override public void classifiesDoubleDoubleDouble() { throw new UnsupportedOperationException(); } @Test @Override public void intersectsDoubleDoubleDouble() { throw new UnsupportedOperationException(); } @Test @Override public void setPivotPoint3D() { throw new UnsupportedOperationException(); } @Test @Override public void setPivotDoubleDoubleDouble() { throw new UnsupportedOperationException(); } @Test @Override public void getPivot() { throw new UnsupportedOperationException(); } @Test public void setX() { throw new UnsupportedOperationException(); } @Test public void translate() { throw new UnsupportedOperationException(); } }