当前位置: 首页>>代码示例>>Java>>正文


Java SimplexSolverInterface类代码示例

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


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

示例1: init

import com.bulletphysics.collision.narrowphase.SimplexSolverInterface; //导入依赖的package包/类
public void init (PersistentManifold mf, CollisionAlgorithmConstructionInfo ci, CollisionObject body0, CollisionObject body1,
	SimplexSolverInterface simplexSolver, ConvexPenetrationDepthSolver pdSolver) {
	super.init(ci);
	gjkPairDetector.init(null, null, simplexSolver, pdSolver);
	this.manifoldPtr = mf;
	this.ownManifold = false;
	this.lowLevelOfDetail = false;
}
 
开发者ID:vbousquet,项目名称:libgdx-jbullet,代码行数:9,代码来源:ConvexConvexAlgorithm.java

示例2: init

import com.bulletphysics.collision.narrowphase.SimplexSolverInterface; //导入依赖的package包/类
public void init(PersistentManifold mf, CollisionAlgorithmConstructionInfo ci, CollisionObject body0, CollisionObject body1, SimplexSolverInterface simplexSolver, ConvexPenetrationDepthSolver pdSolver) {
	super.init(ci);
	gjkPairDetector.init(null, null, simplexSolver, pdSolver);
	this.manifoldPtr = mf;
	this.ownManifold = false;
	this.lowLevelOfDetail = false;
}
 
开发者ID:warlockcodes,项目名称:Null-Engine,代码行数:8,代码来源:ConvexConvexAlgorithm.java

示例3: init

import com.bulletphysics.collision.narrowphase.SimplexSolverInterface; //导入依赖的package包/类
public void init(PersistentManifold mf, CollisionAlgorithmConstructionInfo ci, CollisionObject body0, CollisionObject body1, SimplexSolverInterface simplexSolver, ConvexPenetrationDepthSolver pdSolver) {
	super.init(ci);
               this.simplexSolver = simplexSolver;
               this.pdSolver = pdSolver;
	this.manifoldPtr = mf;
	this.ownManifold = false;
	this.lowLevelOfDetail = false;
	gjkPairDetector.init(null, null, simplexSolver, pdSolver);
}
 
开发者ID:unktomi,项目名称:form-follows-function,代码行数:10,代码来源:ConvexConvexAlgorithm.java

示例4: CreateFunc

import com.bulletphysics.collision.narrowphase.SimplexSolverInterface; //导入依赖的package包/类
public CreateFunc (SimplexSolverInterface simplexSolver, ConvexPenetrationDepthSolver pdSolver) {
	this.simplexSolver = simplexSolver;
	this.pdSolver = pdSolver;
}
 
开发者ID:vbousquet,项目名称:libgdx-jbullet,代码行数:5,代码来源:ConvexConvexAlgorithm.java

示例5: CreateFunc

import com.bulletphysics.collision.narrowphase.SimplexSolverInterface; //导入依赖的package包/类
public CreateFunc(SimplexSolverInterface simplexSolver, ConvexPenetrationDepthSolver pdSolver) {
	this.simplexSolver = simplexSolver;
	this.pdSolver = pdSolver;
}
 
开发者ID:warlockcodes,项目名称:Null-Engine,代码行数:5,代码来源:ConvexConvexAlgorithm.java


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