Tabnine Logo
Rot.mulTransUnsafe
Code IndexAdd Tabnine to your IDE (free)

How to use
mulTransUnsafe
method
in
org.jbox2d.common.Rot

Best Java code snippets using org.jbox2d.common.Rot.mulTransUnsafe (Showing top 20 results out of 315)

origin: libgdx/libgdx

public final void getLocalVectorToOutUnsafe(Vec2 worldVector, Vec2 out) {
 Rot.mulTransUnsafe(m_xf.q, worldVector, out);
}
origin: libgdx/libgdx

public final static void mulTransToOutUnsafe(final Transform A, final Transform B,
  final Transform out) {
 assert (out != A);
 assert (out != B);
 Rot.mulTransUnsafe(A.q, B.q, out.q);
 pool.set(B.p).subLocal(A.p);
 Rot.mulTransUnsafe(A.q, pool, out.p);
}
origin: libgdx/libgdx

public final static Transform mulTrans(final Transform A, final Transform B) {
 Transform C = new Transform();
 Rot.mulTransUnsafe(A.q, B.q, C.q);
 pool.set(B.p).subLocal(A.p);
 Rot.mulTransUnsafe(A.q, pool, C.p);
 return C;
}
origin: libgdx/libgdx

Rot.mulTransUnsafe(xfa.q, m_axis, axisA);
Rot.mulTransUnsafe(xfb.q, m_axis.negateLocal(), axisB);
m_axis.negateLocal();
Transform.mulToOutUnsafe(xfa, m_localPoint, pointA);
Rot.mulTransUnsafe(xfb.q, normal.negateLocal(), axisB);
normal.negateLocal();
Transform.mulToOutUnsafe(xfb, m_localPoint, pointB);
Rot.mulTransUnsafe(xfa.q, normal.negateLocal(), axisA);
normal.negateLocal();
origin: libgdx/libgdx

Rot.mulTransUnsafe(xfa.q, m_axis, axisA);
Rot.mulTransUnsafe(xfb.q, m_axis.negateLocal(), axisB);
m_axis.negateLocal();
Transform.mulToOutUnsafe(xfa, m_localPoint, pointA);
Rot.mulTransUnsafe(xfb.q, normal.negateLocal(), axisB);
normal.negateLocal();
Transform.mulToOutUnsafe(xfb, m_localPoint, pointB);
Rot.mulTransUnsafe(xfa.q, normal.negateLocal(), axisA);
normal.negateLocal();
origin: jbox2d/jbox2d

public final void getLocalVectorToOutUnsafe(Vec2 worldVector, Vec2 out) {
 Rot.mulTransUnsafe(m_xf.q, worldVector, out);
}
origin: jbox2d/jbox2d

public final static void mulTransToOutUnsafe(final Transform A, final Transform B,
  final Transform out) {
 assert (out != A);
 assert (out != B);
 Rot.mulTransUnsafe(A.q, B.q, out.q);
 pool.set(B.p).subLocal(A.p);
 Rot.mulTransUnsafe(A.q, pool, out.p);
}
origin: libgdx/libgdx

Rot.mulToOutUnsafe(xfA.q, m_localAnchorA, temp);
temp.addLocal(xfA.p).subLocal(xfC.p);
Rot.mulTransUnsafe(xfC.q, temp, pA);
coordinateA = Vec2.dot(pA.subLocal(pC), m_localAxisC);
pool.pushVec2(2);
Rot.mulToOutUnsafe(xfB.q, m_localAnchorB, temp);
temp.addLocal(xfB.p).subLocal(xfD.p);
Rot.mulTransUnsafe(xfD.q, temp, pB);
coordinateB = Vec2.dot(pB.subLocal(pD), m_localAxisD);
pool.pushVec2(2);
origin: jbox2d/jbox2d

public final static Transform mulTrans(final Transform A, final Transform B) {
 Transform C = new Transform();
 Rot.mulTransUnsafe(A.q, B.q, C.q);
 pool.set(B.p).subLocal(A.p);
 Rot.mulTransUnsafe(A.q, pool, C.p);
 return C;
}
origin: libgdx/libgdx

Rot.mulTransUnsafe(transformA.q, d.negateLocal(), temp);
vertex.indexA = proxyA.getSupport(temp);
Transform.mulToOutUnsafe(transformA, proxyA.getVertex(vertex.indexA), vertex.wA);
Rot.mulTransUnsafe(transformB.q, d.negateLocal(), temp);
vertex.indexB = proxyB.getSupport(temp);
Transform.mulToOutUnsafe(transformB, proxyB.getVertex(vertex.indexB), vertex.wB);
origin: libgdx/libgdx

Rot.mulTransUnsafe(qC, temp.set(rA).addLocal(cA).subLocal(cC), pA);
coordinateA = Vec2.dot(pA.subLocal(pC), m_localAxisC);
pool.pushVec2(4);
Rot.mulTransUnsafe(qD, temp.set(rB).addLocal(cB).subLocal(cD), pB);
coordinateB = Vec2.dot(pB.subLocal(pD), m_localAxisD);
pool.pushVec2(5);
origin: org.jbox2d/jbox2d-library

public final void getLocalVectorToOutUnsafe(Vec2 worldVector, Vec2 out) {
 Rot.mulTransUnsafe(m_xf.q, worldVector, out);
}
origin: jbox2d/jbox2d

Rot.mulTransUnsafe(xfa.q, m_axis, axisA);
Rot.mulTransUnsafe(xfb.q, m_axis.negateLocal(), axisB);
m_axis.negateLocal();
Transform.mulToOutUnsafe(xfa, m_localPoint, pointA);
Rot.mulTransUnsafe(xfb.q, normal.negateLocal(), axisB);
normal.negateLocal();
Transform.mulToOutUnsafe(xfb, m_localPoint, pointB);
Rot.mulTransUnsafe(xfa.q, normal.negateLocal(), axisA);
normal.negateLocal();
origin: andmizi/MobikeTags

public final static void mulTransToOutUnsafe(final Transform A, final Transform B,
                       final Transform out) {
 assert (out != A);
 assert (out != B);
 Rot.mulTransUnsafe(A.q, B.q, out.q);
 pool.set(B.p).subLocal(A.p);
 Rot.mulTransUnsafe(A.q, pool, out.p);
}
origin: org.jbox2d/jbox2d-library

public final static void mulTransToOutUnsafe(final Transform A, final Transform B,
  final Transform out) {
 assert (out != A);
 assert (out != B);
 Rot.mulTransUnsafe(A.q, B.q, out.q);
 pool.set(B.p).subLocal(A.p);
 Rot.mulTransUnsafe(A.q, pool, out.p);
}
origin: org.jbox2d/jbox2d-library

public final static Transform mulTrans(final Transform A, final Transform B) {
 Transform C = new Transform();
 Rot.mulTransUnsafe(A.q, B.q, C.q);
 pool.set(B.p).subLocal(A.p);
 Rot.mulTransUnsafe(A.q, pool, C.p);
 return C;
}
origin: andmizi/MobikeTags

public final static Transform mulTrans(final Transform A, final Transform B) {
 Transform C = new Transform();
 Rot.mulTransUnsafe(A.q, B.q, C.q);
 pool.set(B.p).subLocal(A.p);
 Rot.mulTransUnsafe(A.q, pool, C.p);
 return C;
}
origin: jbox2d/jbox2d

Rot.mulToOutUnsafe(xfA.q, m_localAnchorA, temp);
temp.addLocal(xfA.p).subLocal(xfC.p);
Rot.mulTransUnsafe(xfC.q, temp, pA);
coordinateA = Vec2.dot(pA.subLocal(pC), m_localAxisC);
pool.pushVec2(2);
Rot.mulToOutUnsafe(xfB.q, m_localAnchorB, temp);
temp.addLocal(xfB.p).subLocal(xfD.p);
Rot.mulTransUnsafe(xfD.q, temp, pB);
coordinateB = Vec2.dot(pB.subLocal(pD), m_localAxisD);
pool.pushVec2(2);
origin: jbox2d/jbox2d

Rot.mulTransUnsafe(transformA.q, d.negateLocal(), temp);
vertex.indexA = proxyA.getSupport(temp);
Transform.mulToOutUnsafe(transformA, proxyA.getVertex(vertex.indexA), vertex.wA);
Rot.mulTransUnsafe(transformB.q, d.negateLocal(), temp);
vertex.indexB = proxyB.getSupport(temp);
Transform.mulToOutUnsafe(transformB, proxyB.getVertex(vertex.indexB), vertex.wB);
origin: jbox2d/jbox2d

Rot.mulTransUnsafe(qC, temp.set(rA).addLocal(cA).subLocal(cC), pA);
coordinateA = Vec2.dot(pA.subLocal(pC), m_localAxisC);
pool.pushVec2(4);
Rot.mulTransUnsafe(qD, temp.set(rB).addLocal(cB).subLocal(cD), pB);
coordinateB = Vec2.dot(pB.subLocal(pD), m_localAxisD);
pool.pushVec2(5);
org.jbox2d.commonRotmulTransUnsafe

Popular methods of Rot

  • mulToOut
  • mulToOutUnsafe
  • set
  • <init>
  • clone
  • getAngle
  • getXAxis
  • mul
  • mulTrans
  • mulUnsafe
  • setIdentity
  • setIdentity

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getSharedPreferences (Context)
  • findViewById (Activity)
  • getContentResolver (Context)
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now