• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Java MorphShape类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.newdawn.slick.geom.MorphShape的典型用法代码示例。如果您正苦于以下问题:Java MorphShape类的具体用法?Java MorphShape怎么用?Java MorphShape使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



MorphShape类属于org.newdawn.slick.geom包,在下文中一共展示了MorphShape类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: addStep

import org.newdawn.slick.geom.MorphShape; //导入依赖的package包/类
/**
 * Add a subsquent step to the morphing
 * 
 * @param diagram The diagram to add as the next step in the morph
 */
public void addStep(Diagram diagram) {
	if (diagram.getFigureCount() != figures.size()) {
		throw new RuntimeException("Mismatched diagrams, missing ids");
	}
	for (int i=0;i<diagram.getFigureCount();i++) {
		Figure figure = diagram.getFigure(i);
		String id = figure.getData().getMetaData();
		
		for (int j=0;j<figures.size();j++) {
			Figure existing = (Figure) figures.get(j);
			if (existing.getData().getMetaData().equals(id)) {
				MorphShape morph = (MorphShape) existing.getShape();
				morph.addShape(figure.getShape());
				break;
			}
		}
	}
}
 
开发者ID:j-dong,项目名称:trashjam2017,代码行数:24,代码来源:SVGMorph.java


示例2: SVGMorph

import org.newdawn.slick.geom.MorphShape; //导入依赖的package包/类
/**
 * Create a new morph with a first diagram base
 * 
 * @param diagram The base diagram which provides the first step of the morph
 */
public SVGMorph(Diagram diagram) {
	super(diagram.getWidth(), diagram.getHeight());
	
	for (int i=0;i<diagram.getFigureCount();i++) {
		Figure figure = diagram.getFigure(i);
		Figure copy = new Figure(figure.getType(), new MorphShape(figure.getShape()), figure.getData(), figure.getTransform());
		
		figures.add(copy);
	}
}
 
开发者ID:j-dong,项目名称:trashjam2017,代码行数:16,代码来源:SVGMorph.java


示例3: setExternalDiagram

import org.newdawn.slick.geom.MorphShape; //导入依赖的package包/类
/**
 * Set the current diagram we should morph from. This only really works with 
 * updateMorphTime() but can be used for smooth transitions between 
 * morphs.
 * 
 * @param diagram The diagram to use as the base of the morph
 */
public void setExternalDiagram(Diagram diagram) {
	for (int i=0;i<figures.size();i++) {
		Figure figure = (Figure) figures.get(i);
		
		for (int j=0;j<diagram.getFigureCount();j++) {
			Figure newBase = diagram.getFigure(j);
			if (newBase.getData().getMetaData().equals(figure.getData().getMetaData())) {
				MorphShape shape = (MorphShape) figure.getShape();
				shape.setExternalFrame(newBase.getShape());
				break;
			}
		}
	}
}
 
开发者ID:j-dong,项目名称:trashjam2017,代码行数:22,代码来源:SVGMorph.java


示例4: updateMorphTime

import org.newdawn.slick.geom.MorphShape; //导入依赖的package包/类
/**
 * Update the morph time index by the amount specified
 * 
 * @param delta The amount to update the morph by
 */
public void updateMorphTime(float delta) {
	for (int i=0;i<figures.size();i++) {
		Figure figure = (Figure) figures.get(i);
		MorphShape shape = (MorphShape) figure.getShape();
		shape.updateMorphTime(delta);
	}
}
 
开发者ID:j-dong,项目名称:trashjam2017,代码行数:13,代码来源:SVGMorph.java


示例5: setMorphTime

import org.newdawn.slick.geom.MorphShape; //导入依赖的package包/类
/**
 * Set the "time" index for this morph. This is given in terms of diagrams, so
 * 0.5f would give you the position half way between the first and second diagrams.
 * 
 * @param time The time index to represent on this diagrams
 */
public void setMorphTime(float time) {
	for (int i=0;i<figures.size();i++) {
		Figure figure = (Figure) figures.get(i);
		MorphShape shape = (MorphShape) figure.getShape();
		shape.setMorphTime(time);
	}
}
 
开发者ID:j-dong,项目名称:trashjam2017,代码行数:14,代码来源:SVGMorph.java


示例6: init

import org.newdawn.slick.geom.MorphShape; //导入依赖的package包/类
/**
 * @see BasicGame#init(GameContainer)
 */
public void init(GameContainer container) throws SlickException {
	a = new Rectangle(100,100,50,200);
	a = a.transform(Transform.createRotateTransform(0.1f,100,100));
	b = new Rectangle(200,100,50,200);
	b = b.transform(Transform.createRotateTransform(-0.6f,100,100));
	c = new Rectangle(300,100,50,200);
	c = c.transform(Transform.createRotateTransform(-0.2f,100,100));
	
	morph = new MorphShape(a);
	morph.addShape(b);
	morph.addShape(c);
	
	container.setVSync(true);
}
 
开发者ID:j-dong,项目名称:trashjam2017,代码行数:18,代码来源:MorphShapeTest.java



注:本文中的org.newdawn.slick.geom.MorphShape类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java PullRequest类代码示例发布时间:2022-05-22
下一篇:
Java UpdateNodeResourceRequest类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap