blob: 925b4a4acc2a59852a6f7de5e323c637911a4013 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.openmeetings.test.jai;
import junit.framework.TestCase;
import org.apache.log4j.Logger;
import org.junit.Test;
public class TestInterpolation extends TestCase {
private static final Logger log = Logger.getLogger(TestInterpolation.class);
@Test
public void testInterpolate() {
try {
// GeomPoint p1 = new Point(-60,-100);
// GeomPoint p2 = new Point(20, 50);
//
// //double[] samples = {-100,-50};
//
// GeomPoint gPoint = GeomPoint.interpolate(p1, p2, new Float(0.5));
//
// log.debug("Interpolated: "+gPoint);
//
//
// GeomPoint p3 = new GeomPoint();
// p3.setLocation(-2,4);
// //p3.setLocation(3,4);
// p3.normalize(10);
// //GeomPoint
//
//
// p3.setLocation(2,-4);
// //p3.setLocation(3,4);
// p3.normalize(10);
//
} catch (Exception er) {
log.error("ERROR ", er);
System.out.println("Error exporting: " + er);
er.printStackTrace();
}
}
}