Home
last modified time | relevance | path

Searched refs:ordinates (Results 1 – 25 of 953) sorted by relevance

12345678910>>...39

/dports/graphics/geoapi/geoapi-3.0.0/sources-conformance/org/opengis/test/referencing/
H A DSimpleDirectPosition.java52 protected final double[] ordinates; field in SimpleDirectPosition
60 ordinates = new double[dimension]; in SimpleDirectPosition()
67 ordinates = new double[] { in SimpleDirectPosition()
85 return ordinates.length; in getDimension()
92 return ordinates.clone(); in getCoordinate()
100 return ordinates.clone(); in getCoordinates()
107 return ordinates[dimension]; in getOrdinate()
114 ordinates[dimension] = value; in setOrdinate()
132 return Arrays.equals(ordinates, other.getCoordinate()); in equals()
143 return Arrays.hashCode(ordinates); in hashCode()
[all …]
H A DTransformTestCase.java244 System.arraycopy(coordinates, sourceOffset, source.ordinates, 0, sourceDimension); in verifyTransform()
248 expected, targetOffset, target.ordinates, 0, 1, false, i); in verifyTransform()
250 coordinates, sourceOffset, source.ordinates, 0, 1, true, i); in verifyTransform()
255 System.arraycopy(expected, targetOffset, target.ordinates, 0, targetDimension); in verifyTransform()
259 source.ordinates, back.ordinates, i, false); in verifyTransform()
261 expected, targetOffset, target.ordinates, 0, 1, true, i); in verifyTransform()
312 System.arraycopy(coordinates, offset, source.ordinates, 0, sourceDimension); in verifyInverse()
320 source.ordinates, back.ordinates, i, false); in verifyInverse()
322 coordinates, offset, source.ordinates, 0, 1, true, i); in verifyInverse()
393 System.arraycopy(sourceDoubles, i, sourcePosition.ordinates, 0, sourceDimension); in verifyConsistency()
/dports/math/jts/jts-jts-1.18.1/modules/io/ora/src/main/java/org/locationtech/jts/io/oracle/
H A DOraGeom.java47 double[] ordinates = null; field in OraGeom
58 this.ordinates = ordinates; in OraGeom()
66 this(gType, srid, null, elemInfo, ordinates); in OraGeom()
103 if (! isEqual(ordinates, og.ordinates)) in isEqual()
169 private String toString(double[] ordinates) in toString() argument
171 if (ordinates == null) return SQL_NULL; in toString()
181 buf.append(number(ordinates[i])); in toString()
209 if (ordinates == null) { in toStringOrdinates()
237 return ordinates.length + 1; in startingOffset()
277 if (ordinates != null) in ordinateLen()
[all …]
H A DOraReader.java174 double ordinates[] = OraUtil.toDoubleArray((ARRAY) data[4], Double.NaN); in read() local
175 OraGeom oraGeom = new OraGeom(gType, SRID, point, elemInfo, ordinates); in read()
357 seq = extractCoords(oraGeom, oraGeom.ordinates); in readMultiPoint()
535 return extractCoords(oraGeom, oraGeom.ordinates, start, end); in extractCoords()
538 private CoordinateSequence extractCoords(OraGeom oraGeom, double[] ordinates) in extractCoords() argument
540 return extractCoords(oraGeom, ordinates, 1, ordinates.length + 1); in extractCoords()
543 … private CoordinateSequence extractCoords(OraGeom oraGeom, double[] ordinates, int start, int end) in extractCoords() argument
547 if ((ordinates == null) || (ordinates.length == 0)) { in extractCoords()
570 cs.setOrdinate(iCoord, iDim, ordinates[ordIndex]); in extractCoords()
/dports/math/jts/jts-jts-1.18.1/modules/io/common/src/main/java/org/locationtech/jts/io/geojson/
H A DGeoJsonReader.java450 List<Number> ordinates = coordinates.get(i); in createCoordinateSequence() local
452 if (ordinates.size() > 0) { in createCoordinateSequence()
455 if (ordinates.size() > 1) { in createCoordinateSequence()
458 if (ordinates.size() > 2) { in createCoordinateSequence()
468 if (ordinates == null || ordinates.size() == 0) { in createCoordinate()
474 if (ordinates.size() > 0) { in createCoordinate()
475 result.setOrdinate(0, 0, ordinates.get(0).doubleValue()); in createCoordinate()
477 if (ordinates.size() > 1) { in createCoordinate()
478 result.setOrdinate(0, 1, ordinates.get(1).doubleValue()); in createCoordinate()
480 if (ordinates.size() > 2) { in createCoordinate()
[all …]
/dports/math/cgal/CGAL-5.3/include/CGAL/
H A Dinterpolation_functions.h328 std::vector< std::vector<Value_type> > ordinates(n, std::vector<Value_type>(n, Value_type(0))); in farin_c1_interpolation()
338 ordinates[i][i] = f.first; in farin_c1_interpolation()
341 result += coord_i_square * it->second* ordinates[i][i]; in farin_c1_interpolation()
356 ordinates[i][j] = grad.first * in farin_c1_interpolation()
362 res_i += (fac3 * ordinates[i][i] + ordinates[i][j])* it2->second; in farin_c1_interpolation()
383 result += (Coord_type(2.0)*(ordinates[i][i]+ ordinates[j][j]+ in farin_c1_interpolation()
384 ordinates[k][k]) in farin_c1_interpolation()
385 + Coord_type(0.5)*(ordinates[i][j] + ordinates[i][k] in farin_c1_interpolation()
386 + ordinates[j][i] + in farin_c1_interpolation()
387 ordinates[j][k] + ordinates[k][i]+ in farin_c1_interpolation()
[all …]
/dports/math/jts/jts-jts-1.18.1/modules/core/src/test/java/org/locationtech/jts/geom/
H A DCoordinateSequencesTest.java136 StringBuilder ordinates; in ttestCreateRandomOrdinates() local
137 ordinates = new StringBuilder("\tprivate static final double[][] ordinateValues = {"); in ttestCreateRandomOrdinates()
139 if (i%6 == 0) ordinates.append("\n\t\t"); in ttestCreateRandomOrdinates()
140 ordinates.append('{'); in ttestCreateRandomOrdinates()
141 ordinates.append(sequence.getOrdinate(i, 0)); in ttestCreateRandomOrdinates()
142 ordinates.append(','); in ttestCreateRandomOrdinates()
143 ordinates.append(sequence.getOrdinate(i, 1)); in ttestCreateRandomOrdinates()
144 if (i < sequence.size()-1) ordinates.append("},"); else ordinates.append('}'); in ttestCreateRandomOrdinates()
146 ordinates.append("};"); in ttestCreateRandomOrdinates()
148 System.out.println(ordinates.toString()); in ttestCreateRandomOrdinates()
/dports/math/dune-vtk/dune-vtk-38f79c23ef8f29210d41353a8380e42b78422f2f/dune/vtk/datacollectors/
H A Dyaspdatacollector.hh116 std::array<std::vector<T>, 3> ordinates{}; in coordinatesImpl() local
119 ordinates[d].resize(s); in coordinatesImpl()
121 ordinates[d][i] = coords.coordinate(d, extent_[2*d] + i); in coordinatesImpl()
125 ordinates[d].resize(1, T(0)); in coordinatesImpl()
127 return ordinates; in coordinatesImpl()
H A Dstructureddatacollector.hh211 std::array<std::vector<T>, 3> ordinates{}; in coordinatesImpl() local
214 ordinates[d].resize(s); in coordinatesImpl()
216 ordinates[d][i] = origin[d] + (extent[2*d] + i)*spacing[d]; in coordinatesImpl()
220 ordinates[d].resize(1, T(0)); in coordinatesImpl()
222 return ordinates; in coordinatesImpl()
/dports/security/openssl-unsafe/openssl-c9ba19c/doc/crypto/
H A DEC_POINT_new.pod68 The affine co-ordinates for a point describe a point in terms of its x and y position. The functions
69 …nates_GFp and EC_POINT_set_affine_coordinates_GF2m set the B<x> and B<y> co-ordinates for the point
72 As well as the affine co-ordinates, a point can alternatively be described in terms of its Jacobian
73 projective co-ordinates (for Fp curves only). Jacobian projective co-ordinates are expressed as thr…
75ordinates and affine co-ordinates. A Jacobian projective co-ordinate (x, y, z) can be written as a…
76 mapped to (x, y, 1). To set or get the projective co-ordinates use EC_POINT_set_Jprojective_coordin…
79 Points can also be described in terms of their compressed co-ordinates. For a point (x, y), for any…
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/dnn_objdetect/tutorials/
H A Ddnn_objdetect_tutorial.markdown31 Co-ordinates: 41 116 415 254
45 Co-ordinates: 0 32 415 244
58 Co-ordinates: 34 0 381 282
71 Co-ordinates: 160 67 313 363
75 Co-ordinates: 187 198 222 323
/dports/science/grib_api/grib_api-1.28.0-Source/definitions/grib1/
H A D12.table4 2 2 Log co-ordinates
13 11 11 Geometric Co-ordinates
/dports/science/eccodes/eccodes-2.23.0-Source/definitions/grib1/
H A D12.table4 2 2 Log co-ordinates
13 11 11 Geometric Co-ordinates
/dports/emulators/qemu42/qemu-4.2.1/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/doc/man3/
H A DEC_POINT_new.pod121 The affine co-ordinates for a point describe a point in terms of its x and y
123 co-ordinates for the point B<p> defined over the curve given in B<group>. The
137 As well as the affine co-ordinates, a point can alternatively be described in
138 terms of its Jacobian projective co-ordinates (for Fp curves only). Jacobian
139 projective co-ordinates are expressed as three values x, y and z. Working in
141 operations. A mapping exists between Jacobian projective co-ordinates and
142 affine co-ordinates. A Jacobian projective co-ordinate (x, y, z) can be written
144 projective from affine co-ordinates is simple. The co-ordinate (x, y) is mapped
145 to (x, y, 1). To set or get the projective co-ordinates use
149 Points can also be described in terms of their compressed co-ordinates. For a
/dports/sysutils/uefi-edk2-qemu/edk2-edk2-stable201911/CryptoPkg/Library/OpensslLib/openssl/doc/man3/
H A DEC_POINT_new.pod121 The affine co-ordinates for a point describe a point in terms of its x and y
123 co-ordinates for the point B<p> defined over the curve given in B<group>. The
137 As well as the affine co-ordinates, a point can alternatively be described in
138 terms of its Jacobian projective co-ordinates (for Fp curves only). Jacobian
139 projective co-ordinates are expressed as three values x, y and z. Working in
141 operations. A mapping exists between Jacobian projective co-ordinates and
142 affine co-ordinates. A Jacobian projective co-ordinate (x, y, z) can be written
144 projective from affine co-ordinates is simple. The co-ordinate (x, y) is mapped
145 to (x, y, 1). To set or get the projective co-ordinates use
149 Points can also be described in terms of their compressed co-ordinates. For a
/dports/emulators/qemu-utils/qemu-4.2.1/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/doc/man3/
H A DEC_POINT_new.pod121 The affine co-ordinates for a point describe a point in terms of its x and y
123 co-ordinates for the point B<p> defined over the curve given in B<group>. The
137 As well as the affine co-ordinates, a point can alternatively be described in
138 terms of its Jacobian projective co-ordinates (for Fp curves only). Jacobian
139 projective co-ordinates are expressed as three values x, y and z. Working in
141 operations. A mapping exists between Jacobian projective co-ordinates and
142 affine co-ordinates. A Jacobian projective co-ordinate (x, y, z) can be written
144 projective from affine co-ordinates is simple. The co-ordinate (x, y) is mapped
145 to (x, y, 1). To set or get the projective co-ordinates use
149 Points can also be described in terms of their compressed co-ordinates. For a
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/doc/man3/
H A DEC_POINT_new.pod121 The affine co-ordinates for a point describe a point in terms of its x and y
123 co-ordinates for the point B<p> defined over the curve given in B<group>. The
137 As well as the affine co-ordinates, a point can alternatively be described in
138 terms of its Jacobian projective co-ordinates (for Fp curves only). Jacobian
139 projective co-ordinates are expressed as three values x, y and z. Working in
141 operations. A mapping exists between Jacobian projective co-ordinates and
142 affine co-ordinates. A Jacobian projective co-ordinate (x, y, z) can be written
144 projective from affine co-ordinates is simple. The co-ordinate (x, y) is mapped
145 to (x, y, 1). To set or get the projective co-ordinates use
149 Points can also be described in terms of their compressed co-ordinates. For a
/dports/graphics/pecl-imagick/imagick-3.5.1/tests/
H A D174_ImagickDraw_affine_basic.phpt26 //Scale the drawing co-ordinates.
29 //Shear the drawing co-ordinates.
32 //Rotate the drawing co-ordinates. The shear affine matrix
/dports/graphics/pecl-imagick-im7/imagick-3.5.1/tests/
H A D174_ImagickDraw_affine_basic.phpt26 //Scale the drawing co-ordinates.
29 //Shear the drawing co-ordinates.
32 //Rotate the drawing co-ordinates. The shear affine matrix
/dports/math/jts/jts-jts-1.18.1/modules/io/ora/src/test/java/org/locationtech/jts/io/oracle/
H A DMDSYS.java29 int[] elemInfo, double[] ordinates) { in SDO_GEOMETRY() argument
30 return new OraGeom(gType, srid, elemInfo, ordinates); in SDO_GEOMETRY()
/dports/emulators/qemu60/qemu-6.0.0/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/doc/man3/
H A DEC_POINT_new.pod121 The affine co-ordinates for a point describe a point in terms of its x and y
123 co-ordinates for the point B<p> defined over the curve given in B<group>. The
137 As well as the affine co-ordinates, a point can alternatively be described in
138 terms of its Jacobian projective co-ordinates (for Fp curves only). Jacobian
139 projective co-ordinates are expressed as three values x, y and z. Working in
141 operations. A mapping exists between Jacobian projective co-ordinates and
142 affine co-ordinates. A Jacobian projective co-ordinate (x, y, z) can be written
144 projective from affine co-ordinates is simple. The co-ordinate (x, y) is mapped
145 to (x, y, 1). To set or get the projective co-ordinates use
149 Points can also be described in terms of their compressed co-ordinates. For a
/dports/devel/cargo-c/cargo-c-0.9.6+cargo-0.58/cargo-crates/openssl-src-111.16.0+1.1.1l/openssl/doc/man3/
H A DEC_POINT_new.pod121 The affine co-ordinates for a point describe a point in terms of its x and y
123 co-ordinates for the point B<p> defined over the curve given in B<group>. The
137 As well as the affine co-ordinates, a point can alternatively be described in
138 terms of its Jacobian projective co-ordinates (for Fp curves only). Jacobian
139 projective co-ordinates are expressed as three values x, y and z. Working in
141 operations. A mapping exists between Jacobian projective co-ordinates and
142 affine co-ordinates. A Jacobian projective co-ordinate (x, y, z) can be written
144 projective from affine co-ordinates is simple. The co-ordinate (x, y) is mapped
145 to (x, y, 1). To set or get the projective co-ordinates use
149 Points can also be described in terms of their compressed co-ordinates. For a
/dports/emulators/qemu/qemu-6.2.0/roms/edk2/CryptoPkg/Library/OpensslLib/openssl/doc/man3/
H A DEC_POINT_new.pod121 The affine co-ordinates for a point describe a point in terms of its x and y
123 co-ordinates for the point B<p> defined over the curve given in B<group>. The
137 As well as the affine co-ordinates, a point can alternatively be described in
138 terms of its Jacobian projective co-ordinates (for Fp curves only). Jacobian
139 projective co-ordinates are expressed as three values x, y and z. Working in
141 operations. A mapping exists between Jacobian projective co-ordinates and
142 affine co-ordinates. A Jacobian projective co-ordinate (x, y, z) can be written
144 projective from affine co-ordinates is simple. The co-ordinate (x, y) is mapped
145 to (x, y, 1). To set or get the projective co-ordinates use
149 Points can also be described in terms of their compressed co-ordinates. For a
/dports/sysutils/vector/vector-0.10.0/cargo-crates/openssl-src-111.9.0+1.1.1g/openssl/doc/man3/
H A DEC_POINT_new.pod121 The affine co-ordinates for a point describe a point in terms of its x and y
123 co-ordinates for the point B<p> defined over the curve given in B<group>. The
137 As well as the affine co-ordinates, a point can alternatively be described in
138 terms of its Jacobian projective co-ordinates (for Fp curves only). Jacobian
139 projective co-ordinates are expressed as three values x, y and z. Working in
141 operations. A mapping exists between Jacobian projective co-ordinates and
142 affine co-ordinates. A Jacobian projective co-ordinate (x, y, z) can be written
144 projective from affine co-ordinates is simple. The co-ordinate (x, y) is mapped
145 to (x, y, 1). To set or get the projective co-ordinates use
149 Points can also be described in terms of their compressed co-ordinates. For a
/dports/sysutils/uefi-edk2-bhyve/edk2-edk2-stable202102/CryptoPkg/Library/OpensslLib/openssl/doc/man3/
H A DEC_POINT_new.pod121 The affine co-ordinates for a point describe a point in terms of its x and y
123 co-ordinates for the point B<p> defined over the curve given in B<group>. The
137 As well as the affine co-ordinates, a point can alternatively be described in
138 terms of its Jacobian projective co-ordinates (for Fp curves only). Jacobian
139 projective co-ordinates are expressed as three values x, y and z. Working in
141 operations. A mapping exists between Jacobian projective co-ordinates and
142 affine co-ordinates. A Jacobian projective co-ordinate (x, y, z) can be written
144 projective from affine co-ordinates is simple. The co-ordinate (x, y) is mapped
145 to (x, y, 1). To set or get the projective co-ordinates use
149 Points can also be described in terms of their compressed co-ordinates. For a

12345678910>>...39