HomeSort by relevance Sort by last modified time
    Searched refs:normal (Results 1 - 25 of 370) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/css/
themeChromiumSkia.css 34 * font weight should always be normal, to distinguish from optgroup labels. */
36 font-weight: normal !important;
quirks.css 35 white-space: normal;
36 line-height: normal;
37 font-weight: normal;
39 font-variant: normal;
40 font-style: normal;
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Plane.java 40 * <code>Plane</code> defines a plane where Normal dot (x,y,z) = Constant.
43 * point is on the non-normal side of the plane.
62 * Vector normal to the plane.
64 protected Vector3f normal = new Vector3f(); field in class:Plane
73 * default object and contains a normal of (0,0,0) and a constant of 0.
79 * Constructor instantiates a new <code>Plane</code> object. The normal
82 * @param normal
83 * the normal of the plane.
87 public Plane(Vector3f normal, float constant) {
88 if (normal == null) {
    [all...]
  /external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
OCTTriangle.java 74 Vector3f normal = new Vector3f(pointb); local
75 normal.subtractLocal(pointa).crossLocal(pointc.x-pointa.x, pointc.y-pointa.y, pointc.z-pointa.z);
76 normal.normalizeLocal();
77 return normal;
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/mediacontrol/mutebutton/
mute_button.edc 39 image.normal: "widget/mediacontrol/mutebutton/mutebutton.png";
43 image.normal: "widget/mediacontrol/mutebutton/unmutebutton.png";
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/mediacontrol/playpausebutton/
playpause_button.edc 39 image.normal: "widget/mediacontrol/playpausebutton/playbutton.png";
43 image.normal: "widget/mediacontrol/playpausebutton/pausebutton.png";
  /external/jmonkeyengine/engine/src/bullet-native/
com_jme3_bullet_collision_shapes_PlaneCollisionShape.cpp 50 (JNIEnv * env, jobject object, jobject normal, jfloat constant) {
53 jmeBulletUtil::convert(env, normal, &norm);
  /external/quake/quake/src/QW/client/
mathlib.c 34 void ProjectPointOnPlane( vec3_t dst, const vec3_t p, const vec3_t normal )
40 inv_denom = 1.0F / DotProduct( normal, normal );
42 d = DotProduct( normal, p ) * inv_denom;
44 n[0] = normal[0] * inv_denom;
45 n[1] = normal[1] * inv_denom;
46 n[2] = normal[2] * inv_denom;
209 dist1 = p->normal[0]*emaxs[0] + p->normal[1]*emaxs[1] + p->normal[2]*emaxs[2]
    [all...]
  /external/quake/quake/src/WinQuake/
mathlib.cpp 34 void ProjectPointOnPlane( vec3_t dst, const vec3_t p, const vec3_t normal )
40 inv_denom = 1.0F / DotProduct( normal, normal );
42 d = DotProduct( normal, p ) * inv_denom;
44 n[0] = normal[0] * inv_denom;
45 n[1] = normal[1] * inv_denom;
46 n[2] = normal[2] * inv_denom;
211 dist1 = p->normal[0]*emaxs[0] + p->normal[1]*emaxs[1] + p->normal[2]*emaxs[2];
    [all...]
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/check/
check.edc 77 normal: "widget/check/img_check_off.png";
84 normal: "widget/check/img_check_on.png";
101 normal: "widget/check/img_check_on_hover.png";
108 normal: "widget/check/img_check_off_hover.png";
115 normal: "widget/check/img_check_on_focus.png";
122 normal: "widget/check/img_check_off_focus.png";
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/radio/
radio.edc 76 normal: "widget/radio/img_radio_off.png";
83 normal: "widget/radio/img_radio_on.png";
100 normal: "widget/radio/img_radio_on_hover.png";
107 normal: "widget/radio/img_radio_off_hover.png";
114 normal: "widget/radio/img_radio_on_focus.png";
121 normal: "widget/radio/img_radio_off_focus.png";
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Hyperplane.h 29 * \f$ n \cdot x + d = 0 \f$ where \f$ n \f$ is a unit normal vector of the plane (linear part)
53 /** Construct a plane from its normal \a n and a point \a e onto the plane.
54 * \warning the vector normal is assumed to be normalized.
59 normal() = n;
63 /** Constructs a plane from its normal \a n and distance to the origin \a d
65 * \warning the vector normal is assumed to be normalized.
70 normal() = n;
80 result.normal() = (p1 - p0).unitOrthogonal();
81 result.offset() = -result.normal().eigen2_dot(p0);
92 result.normal() = (p2 - p0).cross(p1 - p0).normalized()
136 inline const NormalReturnType normal() const { return NormalReturnType(*const_cast<Coefficients*>(&m_coeffs),0,0,dim(),1); } function in class:Eigen::Hyperplane
141 inline NormalReturnType normal() { return NormalReturnType(m_coeffs,0,0,dim(),1); } function in class:Eigen::Hyperplane
    [all...]
  /external/eigen/Eigen/src/Geometry/
Hyperplane.h 30 * \f$ n \cdot x + d = 0 \f$ where \f$ n \f$ is a unit normal vector of the plane (linear part)
64 /** Construct a plane from its normal \a n and a point \a e onto the plane.
65 * \warning the vector normal is assumed to be normalized.
70 normal() = n;
74 /** Constructs a plane from its normal \a n and distance to the origin \a d
76 * \warning the vector normal is assumed to be normalized.
81 normal() = n;
91 result.normal() = (p1 - p0).unitOrthogonal();
92 result.offset() = -p0.dot(result.normal());
103 result.normal() = (p2 - p0).cross(p1 - p0).normalized()
147 inline ConstNormalReturnType normal() const { return ConstNormalReturnType(m_coeffs,0,0,dim(),1); } function in class:Eigen::Hyperplane
152 inline NormalReturnType normal() { return NormalReturnType(m_coeffs,0,0,dim(),1); } function in class:Eigen::Hyperplane
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/
EmitterMeshConvexHullShape.java 49 * The normal param is not used.
53 * @param normal
57 public void getRandomPointAndNormal(Vector3f store, Vector3f normal) {
58 super.getRandomPointAndNormal(store, normal);
EmitterShape.java 51 * This method fills in the initial position of the particle and its normal vector.
54 * @param normal
55 * store variable for initial normal
57 public void getRandomPointAndNormal(Vector3f store, Vector3f normal);
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/mediacontrol/seekbackwardbutton/
seekbackward_button.edc 38 image.normal: "widget/mediacontrol/seekbackwardbutton/seekbackwardbutton.png";
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/mediacontrol/seekforwardbutton/
seekforward_button.edc 38 image.normal: "widget/mediacontrol/seekforwardbutton/seekforwardbutton.png";
  /external/chromium/build/
sanitize-mac-build-log.sed 31 s|^Distributed-CompileC \(.*\) normal i386 c++ com.apple.compilers.gcc.4_2| CC \1|
32 s|^CompileC \(.*\) normal i386 c++ com.apple.compilers.gcc.4_2| CC \1|
  /external/replicaisland/src/com/replica/replicaisland/
SolidSurfaceComponent.java 75 public void addSurface(Vector2 startPoint, Vector2 endPoint, Vector2 normal) {
78 mNormals.add(normal);
95 Vector2 normal = mNormal; local
118 normal.set(normals.get(x));
120 normal.flipHorizontal(0);
124 normal.flipVertical(0);
127 collision.addTemporarySurface(start, end, normal, parentObject);
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/combo/
combo.edc 106 normal: "widget/combo/combo_normal.png";
119 normal: "widget/combo/combo_hover.png";
127 normal: "widget/combo/combo_focus.png";
135 normal: "widget/combo/combo_press.png";
167 normal: "widget/combo/combo_normal_button.png";
182 normal: "widget/combo/combo_hover_button.png";
191 normal: "widget/combo/combo_focus_button.png";
200 normal: "widget/combo/combo_press_button.png";
227 normal: "widget/combo/icon.png";
236 normal: "widget/combo/icon.png"
    [all...]
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
TerrainPatch.java 310 * recalculate all of the normal vectors in this terrain patch
314 getMesh().getBuffer(Type.Normal).updateData(newNormalBuffer);
324 private void setInBuffer(Mesh mesh, int index, Vector3f normal, Vector3f tangent, Vector3f binormal) {
325 VertexBuffer NB = mesh.getBuffer(Type.Normal);
328 BufferUtils.setInBuffer(normal, (FloatBuffer)NB.getData(), index);
370 Vector3f normal = new Vector3f(); local
385 averageNormalsTangents(null, rootPoint, leftPoint, bottomPoint, rightPoint, normal, tangent, binormal);
386 setInBuffer(this.getMesh(), s, normal, tangent, binormal); local
387 setInBuffer(right.getMesh(), 0, normal, tangent, binormal); local
391 averageNormalsTangents(topPoint, rootPoint, leftPoint, bottomPoint, rightPoint,normal, tangent, binormal);
392 setInBuffer(this.getMesh(), s, normal, tangent, binormal); local
393 setInBuffer(right.getMesh(), 0, normal, tangent, binormal); local
406 setInBuffer(right.getMesh(), (s+1)*(s), normal, tangent, binormal); local
411 setInBuffer(right.getMesh(), (s+1)*s, normal, tangent, binormal); local
412 setInBuffer(bottom.getMesh(), s, normal, tangent, binormal); local
423 setInBuffer(right.getMesh(), (s+1)*(i), normal, tangent, binormal); local
439 setInBuffer(this.getMesh(), 0, normal, tangent, binormal); local
440 setInBuffer(left.getMesh(), s, normal, tangent, binormal); local
445 setInBuffer(this.getMesh(), 0, normal, tangent, binormal); local
446 setInBuffer(left.getMesh(), s, normal, tangent, binormal); local
447 setInBuffer(top.getMesh(), (s+1)*s, normal, tangent, binormal); local
458 setInBuffer(this.getMesh(), (s+1)*(s), normal, tangent, binormal); local
464 setInBuffer(this.getMesh(), (s+1)*(s), normal, tangent, binormal); local
466 setInBuffer(bottom.getMesh(), 0, normal, tangent, binormal); local
477 setInBuffer(this.getMesh(), (s+1)*(i), normal, tangent, binormal); local
500 setInBuffer(this.getMesh(), i, normal, tangent, binormal); local
501 setInBuffer(top.getMesh(), (s+1)*(s)+i, normal, tangent, binormal); local
524 setInBuffer(this.getMesh(), (s+1)*(s)+i, normal, tangent, binormal); local
525 setInBuffer(bottom.getMesh(), i, normal, tangent, binormal); local
571 Vector3f normal = new Vector3f(); local
583 Vector3f normal = new Vector3f(); local
    [all...]
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/static/css/
main.css 35 font-weight: normal;
66 font-weight: normal;
75 font-weight: normal;
  /build/tools/droiddoc/templates-pdk/assets/
yui-3.3.0-reset-min.css 8 html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:text-top;}sub{vertical-align:text-bottom;}input,textarea,select{font-family:in (…)
  /external/iproute2/netem/
Makefile 1 DISTGEN = maketable normal pareto paretonormal
2 DISTDATA = normal.dist pareto.dist paretonormal.dist experimental.dist
normal.c 2 * Normal distribution table generator
18 normal(double x, double mu, double sigma) function
32 i = rint(TABLESIZE * normal(x, 0.0, 1.0));
37 printf("# This is the distribution table for the normal distribution.\n");

Completed in 463 milliseconds

1 2 3 4 5 6 7 8 91011>>