本文整理汇总了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;
}
示例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;
}
示例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);
}
示例4: CreateFunc
import com.bulletphysics.collision.narrowphase.SimplexSolverInterface; //导入依赖的package包/类
public CreateFunc (SimplexSolverInterface simplexSolver, ConvexPenetrationDepthSolver pdSolver) {
this.simplexSolver = simplexSolver;
this.pdSolver = pdSolver;
}
示例5: CreateFunc
import com.bulletphysics.collision.narrowphase.SimplexSolverInterface; //导入依赖的package包/类
public CreateFunc(SimplexSolverInterface simplexSolver, ConvexPenetrationDepthSolver pdSolver) {
this.simplexSolver = simplexSolver;
this.pdSolver = pdSolver;
}