Uses of Class
com.jme.math.Line

Packages that use Line
com.jme.intersection   
com.jme.math   
com.jmex.effects.particles   
 

Uses of Line in com.jme.intersection
 

Methods in com.jme.intersection with parameters of type Line
static boolean IntersectionSphere.intersection(Line line, BoundingSphere sphere, Vector3f velocity, float time)
          intersection compares a dynamic sphere to a stationary line.
 

Uses of Line in com.jme.math
 

Methods in com.jme.math that return Line
 Line Line.clone()
           
 

Methods in com.jme.math that return types with arguments of type Line
 java.lang.Class<? extends Line> Line.getClassTag()
           
 

Uses of Line in com.jmex.effects.particles
 

Fields in com.jmex.effects.particles declared as Line
protected  Line ParticleSystem.psLine
           
 

Methods in com.jmex.effects.particles that return Line
 Line SimpleParticleInfluenceFactory.BasicVortex.getAxis()
           
 Line ParticleSystem.getLine()
          getLine returns the currently set line segment.
 

Methods in com.jmex.effects.particles with parameters of type Line
static ParticleInfluence SimpleParticleInfluenceFactory.createBasicVortex(float strength, float divergence, Line axis, boolean random, boolean transformWithScene)
          Creates a basic vortex.
 void SimpleParticleInfluenceFactory.BasicVortex.setAxis(Line axis)
           
 void ParticleSystem.setGeometry(Line line)
          Set a line segment to be used as the "emittor".
 

Constructors in com.jmex.effects.particles with parameters of type Line
SimpleParticleInfluenceFactory.BasicVortex(float strength, float divergence, Line axis, boolean random, boolean transformWithScene)