本文整理汇总了Java中org.newdawn.slick.geom.Vector2f.getY方法的典型用法代码示例。如果您正苦于以下问题:Java Vector2f.getY方法的具体用法?Java Vector2f.getY怎么用?Java Vector2f.getY使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.newdawn.slick.geom.Vector2f
的用法示例。
在下文中一共展示了Vector2f.getY方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getValue
import org.newdawn.slick.geom.Vector2f; //导入方法依赖的package包/类
/**
* Get the value to use at a given time value
*
* @param t The time value (expecting t in [0,1])
* @return The value to use at the specified time
*/
public float getValue(float t) {
// first: determine the segment we are in
Vector2f p0 = (Vector2f) curve.get(0);
for (int i = 1; i < curve.size(); i++) {
Vector2f p1 = (Vector2f) curve.get(i);
if (t >= p0.getX() && t <= p1.getX()) {
// found the segment
float st = (t - p0.getX())
/ (p1.getX() - p0.getX());
float r = p0.getY() + st
* (p1.getY() - p0.getY());
// System.out.println( "t: " + t + ", " + p0.x + ", " + p0.y
// + " : " + p1.x + ", " + p1.y + " => " + r );
return r;
}
p0 = p1;
}
return 0;
}