Searched defs:radius (Results 1 - 25 of 178) sorted by relevance

12345678

/external/jmonkeyengine/engine/src/bullet-native/
H A Dcom_jme3_bullet_collision_shapes_SphereCollisionShape.cpp49 (JNIEnv *env, jobject object, jfloat radius) {
51 btSphereShape* shape=new btSphereShape(radius);
48 Java_com_jme3_bullet_collision_shapes_SphereCollisionShape_createShape(JNIEnv *env, jobject object, jfloat radius) argument
H A Dcom_jme3_bullet_collision_shapes_CapsuleCollisionShape.cpp49 (JNIEnv * env, jobject object, jint axis, jfloat radius, jfloat height) {
54 shape = new btCapsuleShapeX(radius, height);
57 shape = new btCapsuleShape(radius, height);
60 shape = new btCapsuleShapeZ(radius, height);
48 Java_com_jme3_bullet_collision_shapes_CapsuleCollisionShape_createShape(JNIEnv * env, jobject object, jint axis, jfloat radius, jfloat height) argument
H A Dcom_jme3_bullet_collision_shapes_ConeCollisionShape.cpp49 (JNIEnv * env, jobject object, jint axis, jfloat radius, jfloat height) {
54 shape = new btConeShapeX(radius, height);
57 shape = new btConeShape(radius, height);
60 shape = new btConeShapeZ(radius, height);
48 Java_com_jme3_bullet_collision_shapes_ConeCollisionShape_createShape(JNIEnv * env, jobject object, jint axis, jfloat radius, jfloat height) argument
/external/skia/include/effects/
H A DSkArcToPathEffect.h15 /** radius must be > 0 to have an effect. It specifies the distance from each corner
18 static SkPathEffect* Create(SkScalar radius) { argument
19 if (radius <= 0) {
22 return new SkArcToPathEffect(radius);
31 explicit SkArcToPathEffect(SkScalar radius);
H A DSkCornerPathEffect.h20 /** radius must be > 0 to have an effect. It specifies the distance from each corner
23 static SkPathEffect* Create(SkScalar radius) { return new SkCornerPathEffect(radius); } argument
38 explicit SkCornerPathEffect(SkScalar radius);
H A DSkMorphologyImageFilter.h24 * destination buffer, radius is the morphology radius, width and height are the bounds
29 typedef void (*Proc)(const SkPMColor* src, SkPMColor* dst, int radius,
46 SkISize radius() const { return fRadius; } function in class:SkMorphologyImageFilter
/external/javassist/sample/duplicate/
H A DBall.java9 private int radius = 30; field in class:Ball
32 g.fillOval(x, y, radius, radius);
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
H A DConeCollisionShape.java22 protected float radius; field in class:ConeCollisionShape
29 public ConeCollisionShape(float radius, float height, int axis) { argument
30 this.radius = radius;
31 this.height = radius;
36 public ConeCollisionShape(float radius, float height) { argument
37 this.radius = radius;
38 this.height = radius;
44 return radius;
80 createShape(int axis, float radius, float height) argument
[all...]
H A DSphereCollisionShape.java48 protected float radius; field in class:SphereCollisionShape
54 * creates a SphereCollisionShape with the given radius
55 * @param radius
57 public SphereCollisionShape(float radius) { argument
58 this.radius = radius;
63 return radius;
69 capsule.write(radius, "radius", 0.5f);
75 radius
89 createShape(float radius) argument
[all...]
H A DCapsuleCollisionShape.java47 protected float radius,height; field in class:CapsuleCollisionShape
54 * creates a new CapsuleCollisionShape with the given radius and height
55 * @param radius the radius of the capsule
58 public CapsuleCollisionShape(float radius, float height) { argument
59 this.radius=radius;
67 * @param radius
71 public CapsuleCollisionShape(float radius, float height, int axis) { argument
72 this.radius
127 createShape(int axis, float radius, float height) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/scene/debug/
H A DWireSphere.java55 public WireSphere(float radius) { argument
56 updatePositions(radius);
82 public void updatePositions(float radius) { argument
98 // pb.put(radius).put(0).put(0);
99 // pb.put(-radius).put(0).put(0);
102 // pb.put(0).put(radius).put(0);
103 // pb.put(0).put(-radius).put(0);
106 // pb.put(0).put(0).put(radius);
107 // pb.put(0).put(0).put(-radius);
112 float x = radius * FastMat
[all...]
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
H A DConeCollisionShape.java24 protected float radius; field in class:ConeCollisionShape
31 public ConeCollisionShape(float radius, float height, int axis) { argument
32 this.radius = radius;
33 this.height = radius;
38 public ConeCollisionShape(float radius, float height) { argument
39 this.radius = radius;
40 this.height = radius;
46 return radius;
[all...]
H A DSphereCollisionShape.java48 protected float radius; field in class:SphereCollisionShape
54 * creates a SphereCollisionShape with the given radius
55 * @param radius
57 public SphereCollisionShape(float radius) { argument
58 this.radius = radius;
63 return radius;
69 capsule.write(radius, "radius", 0.5f);
75 radius
[all...]
H A DCapsuleCollisionShape.java49 protected float radius,height; field in class:CapsuleCollisionShape
56 * creates a new CapsuleCollisionShape with the given radius and height
57 * @param radius the radius of the capsule
60 public CapsuleCollisionShape(float radius, float height) { argument
61 this.radius=radius;
64 CapsuleShape capShape=new CapsuleShape(radius,height);
70 * @param radius
74 public CapsuleCollisionShape(float radius, floa argument
[all...]
/external/proguard/src/proguard/gui/splash/
H A DCircleSprite.java35 private final VariableInt radius; field in class:CircleSprite
43 * @param radius the variable radius of the circle.
48 VariableInt radius)
53 this.radius = radius;
63 int r = radius.getInt(time);
45 CircleSprite(boolean filled, VariableInt x, VariableInt y, VariableInt radius) argument
/external/skia/bench/
H A DBlurRectsBench.cpp18 BlurRectsBench(SkRect outer, SkRect inner, SkScalar radius) { argument
19 fRadius = radius;
56 BlurRectsNinePatchBench(SkRect outer, SkRect inner, SkScalar radius) argument
57 : INHERITED(outer, inner, radius) {
66 BlurRectsNonNinePatchBench(SkRect outer, SkRect inner, SkScalar radius) argument
67 : INHERITED(outer, inner, radius) {
/external/skia/gm/
H A Dfilltypes.cpp22 const SkScalar radius = SkIntToScalar(45); local
23 fPath.addCircle(SkIntToScalar(50), SkIntToScalar(50), radius);
24 fPath.addCircle(SkIntToScalar(100), SkIntToScalar(100), radius);
H A Dimagefilterstransformed.cpp30 SkScalar radius = SkMinScalar(x, y) * 0.8f; local
40 SkGradientShader::CreateRadial(SkPoint::Make(x, y), radius, colors, nullptr, 2,
45 canvas->drawCircle(x, y, radius, paint);
/external/skia/src/animator/
H A DSkDrawGradient.h59 SkScalar radius; member in class:SkDrawRadialGradient
/external/skia/src/effects/
H A DSkArcToPathEffect.cpp14 SkArcToPathEffect::SkArcToPathEffect(SkScalar radius) : fRadius(radius) {} argument
75 str->appendf("radius: %f", fRadius);
/external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/
H A DEmitterSphereShape.java45 private float radius; field in class:EmitterSphereShape
50 public EmitterSphereShape(Vector3f center, float radius) { argument
55 if (radius <= 0) {
60 this.radius = radius;
77 store.x = (FastMath.nextRandomFloat() * 2f - 1f) * radius;
78 store.y = (FastMath.nextRandomFloat() * 2f - 1f) * radius;
79 store.z = (FastMath.nextRandomFloat() * 2f - 1f) * radius;
80 } while (store.distance(center) > radius);
97 return radius;
100 setRadius(float radius) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/light/
H A DPointLight.java48 * In addition to a position, point lights also have a radius which
56 protected float radius = 0; field in class:PointLight
90 * Returns the radius of the light influence. A radius of 0 means
93 * @return the radius of the light
96 return radius;
100 * Set the radius of the light influence.
102 * Setting a non-zero radius indicates the light should use attenuation.
104 * is greater than the light's radius, then the pixel will not be
105 * effected by this light, if the distance is less than the radius, the
112 setRadius(float radius) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
H A DDome.java60 /** The radius of the dome */
61 private float radius; field in class:Dome
81 * @param radius
85 public Dome(int planes, int radialSamples, float radius) { argument
86 this(new Vector3f(0, 0, 0), planes, radialSamples, radius);
103 * @param radius
104 * The radius of the dome.
107 float radius) {
109 updateGeometry(center, planes, radialSamples, radius, true);
127 * @param radius
106 Dome(Vector3f center, int planes, int radialSamples, float radius) argument
133 Dome(Vector3f center, int planes, int radialSamples, float radius, boolean insideView) argument
180 updateGeometry(Vector3f center, int planes, int radialSamples, float radius, boolean insideView) argument
[all...]
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/filter/
H A DOptimizedErode.java37 private int radius; field in class:OptimizedErode
39 public OptimizedErode setRadius(int radius) { argument
40 this.radius = radius;
45 return this.radius;
59 return super.getMargin(size, margin) + this.radius;
67 for (int y = this.radius + 1; y < size - this.radius; y++) {
68 for (int x = this.radius + 1; x < size - this.radius;
[all...]
H A DSmoothFilter.java36 private int radius; field in class:SmoothFilter
39 public void setRadius(int radius) { argument
40 this.radius = radius;
44 return this.radius;
57 return super.getMargin(size, margin) + this.radius;
65 for (int y = this.radius; y < size - this.radius; y++) {
66 for (int x = this.radius; x < size - this.radius;
[all...]

Completed in 1264 milliseconds

12345678