Sha256: cfa6b7eb4c5d5a853f36965d73a125cb269587629bc00e6714b0062a4e4d7b12
Contents?: true
Size: 450 Bytes
Versions: 7
Compression:
Stored size: 450 Bytes
Contents
package org.jbox2d.particle; import org.jbox2d.common.Vec2; public class ParticleContact { /** Indices of the respective particles making contact. */ public int indexA, indexB; /** The logical sum of the particle behaviors that have been set. */ public int flags; /** Weight of the contact. A value between 0.0f and 1.0f. */ public float weight; /** The normalized direction from A to B. */ public final Vec2 normal = new Vec2(); }
Version data entries
7 entries across 7 versions & 1 rubygems