text
stringlengths
0
8.81k
Name
Type
Description
obj
object
The object containing data to encode.
Returns:
An encoded query string.
Example:
const str = Cesium.objectToQuery({
key1 : 'some value',
key2 : 'a/b',
key3 : ['x', 'y']
});
See:
queryToObject
// str will be:
// 'key1=some%20value&key2=a%2Fb&key3=x&key3=y'
pointInsideTriangle(point, p0, p1, p2) → boolean
engine/Source/Core/pointInsideTriangle.js 7
Determines if a point is inside a triangle.
Name
Type
Description
point
Cartesian2
|
Cartesian3
The point to test.
p0
Cartesian2
|
Cartesian3
The first point of the triangle.
p1
Cartesian2
|
Cartesian3
The second point of the triangle.
p2
Cartesian2
|
Cartesian3