/* * Copyright (C) 2011-2015, Peter Abeles. All Rights Reserved. * * This file is part of Geometric Regression Library (GeoRegression). * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package georegression.transform.se; import georegression.metric.UtilAngle; import georegression.misc.GrlConstants; import georegression.struct.se.Se2_F32; import org.junit.Test; import static org.junit.Assert.assertEquals; /** * @author Peter Abeles */ public class TestInterpolateLinearSe2_F32 { @Test public void interpolate_translation() { Se2_F32 a = new Se2_F32(1,2,0); Se2_F32 b = new Se2_F32(4,6,0); Se2_F32 found = new Se2_F32(); InterpolateLinearSe2_F32.interpolate(a,b,0,found); assertEquals(1, found.T.x, GrlConstants.FLOAT_TEST_TOL); assertEquals(2,found.T.y,GrlConstants.FLOAT_TEST_TOL); assertEquals(0,found.getYaw(),GrlConstants.FLOAT_TEST_TOL); InterpolateLinearSe2_F32.interpolate(a,b,1,found); assertEquals(4,found.T.x,GrlConstants.FLOAT_TEST_TOL); assertEquals(6,found.T.y,GrlConstants.FLOAT_TEST_TOL); assertEquals(0,found.getYaw(),GrlConstants.FLOAT_TEST_TOL); InterpolateLinearSe2_F32.interpolate(a,b,0.25f,found); assertEquals(1+0.25f*3,found.T.x,GrlConstants.FLOAT_TEST_TOL); assertEquals(2+0.25f*4,found.T.y,GrlConstants.FLOAT_TEST_TOL); assertEquals(0,found.getYaw(),GrlConstants.FLOAT_TEST_TOL); } @Test public void interpolate_angleEasy() { Se2_F32 a = new Se2_F32(0,0,1); Se2_F32 b = new Se2_F32(0,0,1.5f); Se2_F32 found = new Se2_F32(); InterpolateLinearSe2_F32.interpolate(a,b,0, found); assertEquals(1,found.getYaw(),GrlConstants.FLOAT_TEST_TOL); InterpolateLinearSe2_F32.interpolate(a,b,1, found); assertEquals(1.5f,found.getYaw(),GrlConstants.FLOAT_TEST_TOL); InterpolateLinearSe2_F32.interpolate(a,b,0.25f, found); assertEquals(1+0.25f*0.5f,found.getYaw(),GrlConstants.FLOAT_TEST_TOL); } @Test public void interpolate_angleHard0() { Se2_F32 a = new Se2_F32(0,0,0.2f); Se2_F32 b = new Se2_F32(0,0,-0.1f); Se2_F32 found = new Se2_F32(); InterpolateLinearSe2_F32.interpolate(a,b,0,found); assertEquals(0.2f,found.getYaw(),GrlConstants.FLOAT_TEST_TOL); InterpolateLinearSe2_F32.interpolate(a,b,1.0f,found); assertEquals(-0.1f,found.getYaw(),GrlConstants.FLOAT_TEST_TOL); InterpolateLinearSe2_F32.interpolate(a,b,0.25f,found); assertEquals(0.2f-0.25f*0.3f,found.getYaw(),GrlConstants.FLOAT_TEST_TOL); } @Test public void interpolate_angleHard1() { Se2_F32 a = new Se2_F32(0,0, (float)Math.PI-0.1f); Se2_F32 b = new Se2_F32(0,0,- (float)Math.PI+0.2f); Se2_F32 found = new Se2_F32(); InterpolateLinearSe2_F32.interpolate(a,b,0.25f,found); assertEquals(UtilAngle.bound( (float)Math.PI - 0.1f + 0.25f * 0.3f),found.getYaw(),GrlConstants.FLOAT_TEST_TOL); InterpolateLinearSe2_F32.interpolate(a,b,0.5f,found); assertEquals(UtilAngle.bound( (float)Math.PI - 0.1f + 0.5f * 0.3f), found.getYaw(), GrlConstants.FLOAT_TEST_TOL); } }