Searched defs:miter (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/libs/hwui/
H A DPathCache.h134 float miter; member in struct:android::uirenderer::PathDescription
/frameworks/base/core/jni/android/graphics/
H A DPaint.cpp779 static void setStrokeMiter(jlong paintHandle, jfloat miter) { argument
780 reinterpret_cast<Paint*>(paintHandle)->setStrokeMiter(miter);
/frameworks/layoutlib/bridge/src/android/graphics/
H A DPaint_Delegate.java155 * returns the value of stroke miter needed by the java api.
420 /*package*/ static void nSetStrokeMiter(long nativePaint, float miter) { argument
427 delegate.mStrokeMiter = miter;
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java1032 * Return the paint's stroke miter value. Used to control the behavior
1033 * of miter joins when the joins angle is sharp.
1035 * @return the paint's miter limit, used whenever the paint's style is
1043 * Set the paint's stroke miter value. This is used to control the behavior
1044 * of miter joins when the joins angle is sharp. This value must be >= 0.
1046 * @param miter set the miter limit on the paint, used whenever the paint's
1049 public void setStrokeMiter(float miter) { argument
1050 nSetStrokeMiter(mNativePaint, miter);
2955 private static native void nSetStrokeMiter(long paintPtr, float miter); argument
[all...]

Completed in 77 milliseconds