/*
* File name: StrangeVisualizer.java (package eas.simulation.spatial.sim2D.standardEnvironments)
* Author(s): lko
* Java version: 7.0
* Generation date: 22.08.2012 (22:04:29)
*
* (c) This file and the EAS (Easy Agent Simulation) framework containing it
* is protected by Creative Commons by-nc-sa license. Any altered or
* further developed versions of this file have to meet the agreements
* stated by the license conditions.
*
* In a nutshell
* -------------
* You are free:
* - to Share -- to copy, distribute and transmit the work
* - to Remix -- to adapt the work
*
* Under the following conditions:
* - Attribution -- You must attribute the work in the manner specified by the
* author or licensor (but not in any way that suggests that they endorse
* you or your use of the work).
* - Noncommercial -- You may not use this work for commercial purposes.
* - Share Alike -- If you alter, transform, or build upon this work, you may
* distribute the resulting work only under the same or a similar license to
* this one.
*
* + Detailed license conditions (Germany):
* http://creativecommons.org/licenses/by-nc-sa/3.0/de/
* + Detailed license conditions (unported):
* http://creativecommons.org/licenses/by-nc-sa/3.0/deed.en
*
* This header must be placed in the beginning of any version of this file.
*/
package eas.simulation.spatial.sim2D.visualizer;
import eas.math.geometry.Vector2D;
import eas.math.geometry.Vector3D;
import eas.simulation.spatial.sim2D.standardEnvironments.AbstractEnvironment2D;
/**
* @author lko
*/
public class StrangeVisualizer1 extends StandardVisualizer {
private static final long serialVersionUID = 7480420568182519594L;
public StrangeVisualizer1(AbstractEnvironment2D<?> environment) {
super(environment);
}
@Override
public Vector2D getPointInVisualization(Vector3D fieldPos2) {
Vector3D fieldPos = new Vector3D(Math.sin(fieldPos2.y) + fieldPos2.x, Math.sin(fieldPos2.x) + fieldPos2.y, 0);
return super.getPointInVisualization(fieldPos);
}
@Override
public Vector2D getRealPosFromScreenPos(Vector2D screenPos) {
Vector2D pos = super.getRealPosFromScreenPos(screenPos);
/*
* The "position inside a polygon" information might be calculated
* slightly incorrect due to distortion of polygons. (TODO: fix that
* in environment.)
*/
Vector2D pos2 = new Vector2D(pos.x - Math.asin(pos.y), pos.y - Math.asin(pos.x));
return pos2;
}
}