Home
last modified time | relevance | path

Searched refs:quadrilateral (Results 1 – 25 of 710) sorted by relevance

12345678910>>...29

/dports/math/dune-localfunctions/dune-localfunctions-f6628171b2773065ab43f97a77f47cd8c4283d8f/dune/localfunctions/test/
H A Dmonomialshapefunctiontest.cc76 success &= testShapeFunctionValue<2,1>(GeometryTypes::quadrilateral, {0,0}, 0, 1); in main()
77 success &= testShapeFunctionValue<2,1>(GeometryTypes::quadrilateral, {0,0}, 1, 0); in main()
78 success &= testShapeFunctionValue<2,1>(GeometryTypes::quadrilateral, {0,0}, 2, 0); in main()
80 success &= testShapeFunctionValue<2,1>(GeometryTypes::quadrilateral, {0.5,0.5}, 0, 1); in main()
81 success &= testShapeFunctionValue<2,1>(GeometryTypes::quadrilateral, {0.5,0.5}, 1, .5); in main()
82 success &= testShapeFunctionValue<2,1>(GeometryTypes::quadrilateral, {0.5,0.5}, 2, .5); in main()
84 success &= testShapeFunctionValue<2,1>(GeometryTypes::quadrilateral, {1,1}, 0, 1); in main()
85 success &= testShapeFunctionValue<2,1>(GeometryTypes::quadrilateral, {1,1}, 1, 1); in main()
86 success &= testShapeFunctionValue<2,1>(GeometryTypes::quadrilateral, {1,1}, 2, 1); in main()
/dports/math/dune-grid/dune-grid-de36e4b4e99da4cd7a120a39779345e701821115/doc/grids/gridfactory/
H A Dtestgrids.hh70 { { quadrilateral, { 0, 1, 2, 3 } } },
124 { quadrilateral, {0, 4, 7, 8} }, { quadrilateral, {4, 1, 8, 5} },
125 { quadrilateral, {8, 5, 6, 2} }, { quadrilateral,{7, 8, 3, 6} },
126 { quadrilateral, {1, 9, 5, 11} }, { quadrilateral, {5, 11, 2, 10} },
127 { quadrilateral, {2, 10, 13, 12} }, { quadrilateral, {3, 6, 14, 15} },
128 { quadrilateral, {6, 2, 15, 13} }
/dports/math/apache-commons-math/commons-math3-3.6.1-src/src/main/java/org/apache/commons/math3/geometry/euclidean/twod/hull/
H A DAklToussaintHeuristic.java81 final List<Vector2D> quadrilateral = buildQuadrilateral(minY, maxX, maxY, minX); in reducePoints() local
83 if (quadrilateral.size() < 3) { in reducePoints()
87 final List<Vector2D> reducedPoints = new ArrayList<Vector2D>(quadrilateral); in reducePoints()
91 if (!insideQuadrilateral(p, quadrilateral)) { in reducePoints()
106 List<Vector2D> quadrilateral = new ArrayList<Vector2D>(); in buildQuadrilateral() local
108 if (!quadrilateral.contains(p)) { in buildQuadrilateral()
109 quadrilateral.add(p); in buildQuadrilateral()
112 return quadrilateral; in buildQuadrilateral()
/dports/graphics/qgis/qgis-3.22.3/python/core/auto_generated/geometry/
H A Dqgsquadrilateral.sip.in18 A quadrilateral is a polygon with four edges (or sides) and four vertices or corners.
19 This class allows the creation of simple quadrilateral (which does not self-intersect).
31 Constructor for an empty quadrilateral geometry.
163 - The quadrilateral would have auto intersections
164 - The quadrilateral has double points
165 - The quadrilateral has collinear points
170 Returns a list including the vertices of the quadrilateral.
175 Returns the quadrilateral as a new polygon. Ownership is transferred to the caller.
185 Returns a string representation of the quadrilateral.
191 Returns the area of the quadrilateral, or 0 if the quadrilateral is empty.
[all …]
/dports/graphics/qgis-ltr/qgis-3.16.16/python/core/auto_generated/geometry/
H A Dqgsquadrilateral.sip.in18 A quadrilateral is a polygon with four edges (or sides) and four vertices or corners.
19 This class allows the creation of simple quadrilateral (which does not self-intersect).
31 Constructor for an empty quadrilateral geometry.
159 - The quadrilateral would have auto intersections
160 - The quadrilateral has double points
161 - The quadrilateral has collinear points
166 Returns a list including the vertices of the quadrilateral.
171 Returns the quadrilateral as a new polygon. Ownership is transferred to the caller.
181 Returns a string representation of the quadrilateral.
187 Returns the area of the quadrilateral, or 0 if the quadrilateral is empty.
[all …]
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Numerics/FEM/test/
H A DitkFEMRobustSolverTest.cxx166 ElementType::Pointer quadrilateral = ElementType::New(); in itkFEMRobustSolverTest() local
168 quadrilateral->SetNode(0, femObject->GetNode(leftBottomNodeIndex)); in itkFEMRobustSolverTest()
169 quadrilateral->SetNode(1, femObject->GetNode(rightBottomNodeIndex)); in itkFEMRobustSolverTest()
170 quadrilateral->SetNode(2, femObject->GetNode(rigthUpperNodeIndex)); in itkFEMRobustSolverTest()
171 quadrilateral->SetNode(3, femObject->GetNode(leftUpperNodeIndex)); in itkFEMRobustSolverTest()
173 quadrilateral->SetGlobalNumber(globalNumbering); in itkFEMRobustSolverTest()
174quadrilateral->SetMaterial( static_cast<MaterialType *>( femObject->GetMaterial(0).GetPointer() ) … in itkFEMRobustSolverTest()
176 femObject->AddNextElement(quadrilateral); in itkFEMRobustSolverTest()
/dports/math/dune-fem/dune-fem-d1c625e6d51167d0cce57de6adcef21f548a8f82/dune/fem/quadrature/caching/test/
H A Dpoint_test.cc101 GeometryType quadrilateral = GeometryTypes::quadrilateral; in transformationTest() local
121 TestQuadrature<double, 2> quadImpQuad(quadrilateral, 0); in transformationTest()
126 PointProvider2Type::getMappers(quadQuad.ipList() , quadrilateral); in transformationTest()
134 PointProvider2Type::getPoints(quadQuad.id(), quadrilateral); in transformationTest()
176 PointProvider1Type::getMappers(quadLine.ipList(), quadrilateral ); in transformationTest()
178 PointProvider1Type::getPoints(quadLine.id(), quadrilateral); in transformationTest()
/dports/math/dune-geometry/dune-geometry-e7bfb66e48496aa28e47974c33ea9a4579bf723b/dune/geometry/test/
H A Dtest-refinement.cc171 gt1 = gt2 = GeometryTypes::quadrilateral; in main()
176 …testStaticRefinementGeometry<GeometryTypes::quadrilateral.id(),double,GeometryTypes::quadrilateral in main()
178 …testStaticRefinementGeometry<GeometryTypes::quadrilateral.id(),double,GeometryTypes::quadrilateral in main()
188 …testStaticRefinementGeometry<GeometryTypes::quadrilateral.id(),double,GeometryTypes::triangle.id()… in main()
190 …testStaticRefinementGeometry<GeometryTypes::quadrilateral.id(),double,GeometryTypes::triangle.id()… in main()
/dports/math/dune-geometry/dune-geometry-e7bfb66e48496aa28e47974c33ea9a4579bf723b/dune/python/test/
H A Dtest_quad.py12 geo.quadrilateral: 1./2.,
21 geo.quadrilateral: 2./5.,
34 for t in (geo.line, geo.triangle, geo.quadrilateral,
H A Dgeometrytype.py4 for t in (vertex, line, triangle, quadrilateral, tetrahedron, pyramid, prism, hexahedron):
18 for d, t in enumerate((vertex, line, quadrilateral, hexahedron)):
/dports/science/PETSc/petsc-3.14.1/src/dm/impls/plex/tests/output/
H A Dex8_0.out49 DM Object: quadrilateral 1 MPI processes
51 quadrilateral in 2 dimensions:
77 DM Object: quadrilateral 1 MPI processes
79 quadrilateral in 2 dimensions:
H A Dex8_1.out79 DM Object: quadrilateral 1 MPI processes
81 quadrilateral in 2 dimensions:
127 DM Object: quadrilateral 1 MPI processes
129 quadrilateral in 2 dimensions:
/dports/graphics/poppler/poppler-21.12.0/glib/
H A Dpoppler-annot.cc253 PopplerQuadrilateral *quadrilateral = &g_array_index(quads, PopplerQuadrilateral, i); in create_annot_quads_from_poppler_quads() local
255quadrilateral->p1.x, quadrilateral->p1.y, quadrilateral->p2.x, quadrilateral->p2.y, quadrilateral-… in create_annot_quads_from_poppler_quads()
279 PopplerQuadrilateral *quadrilateral = &g_array_index(quads, PopplerQuadrilateral, i); in create_poppler_quads_from_annot_quads() local
281 quadrilateral->p1.x = quads_array->getX1(i) - crop_box->x1; in create_poppler_quads_from_annot_quads()
282 quadrilateral->p1.y = quads_array->getY1(i) - crop_box->y1; in create_poppler_quads_from_annot_quads()
283 quadrilateral->p2.x = quads_array->getX2(i) - crop_box->x1; in create_poppler_quads_from_annot_quads()
284 quadrilateral->p2.y = quads_array->getY2(i) - crop_box->y1; in create_poppler_quads_from_annot_quads()
285 quadrilateral->p3.x = quads_array->getX3(i) - crop_box->x1; in create_poppler_quads_from_annot_quads()
286 quadrilateral->p3.y = quads_array->getY3(i) - crop_box->y1; in create_poppler_quads_from_annot_quads()
287 quadrilateral->p4.x = quads_array->getX4(i) - crop_box->x1; in create_poppler_quads_from_annot_quads()
[all …]
/dports/graphics/poppler-glib/poppler-21.12.0/glib/
H A Dpoppler-annot.cc253 PopplerQuadrilateral *quadrilateral = &g_array_index(quads, PopplerQuadrilateral, i); in create_annot_quads_from_poppler_quads() local
255quadrilateral->p1.x, quadrilateral->p1.y, quadrilateral->p2.x, quadrilateral->p2.y, quadrilateral-… in create_annot_quads_from_poppler_quads()
279 PopplerQuadrilateral *quadrilateral = &g_array_index(quads, PopplerQuadrilateral, i); in create_poppler_quads_from_annot_quads() local
281 quadrilateral->p1.x = quads_array->getX1(i) - crop_box->x1; in create_poppler_quads_from_annot_quads()
282 quadrilateral->p1.y = quads_array->getY1(i) - crop_box->y1; in create_poppler_quads_from_annot_quads()
283 quadrilateral->p2.x = quads_array->getX2(i) - crop_box->x1; in create_poppler_quads_from_annot_quads()
284 quadrilateral->p2.y = quads_array->getY2(i) - crop_box->y1; in create_poppler_quads_from_annot_quads()
285 quadrilateral->p3.x = quads_array->getX3(i) - crop_box->x1; in create_poppler_quads_from_annot_quads()
286 quadrilateral->p3.y = quads_array->getY3(i) - crop_box->y1; in create_poppler_quads_from_annot_quads()
287 quadrilateral->p4.x = quads_array->getX4(i) - crop_box->x1; in create_poppler_quads_from_annot_quads()
[all …]
/dports/graphics/poppler-qt5/poppler-21.12.0/glib/
H A Dpoppler-annot.cc253 PopplerQuadrilateral *quadrilateral = &g_array_index(quads, PopplerQuadrilateral, i); in create_annot_quads_from_poppler_quads() local
255quadrilateral->p1.x, quadrilateral->p1.y, quadrilateral->p2.x, quadrilateral->p2.y, quadrilateral-… in create_annot_quads_from_poppler_quads()
279 PopplerQuadrilateral *quadrilateral = &g_array_index(quads, PopplerQuadrilateral, i); in create_poppler_quads_from_annot_quads() local
281 quadrilateral->p1.x = quads_array->getX1(i) - crop_box->x1; in create_poppler_quads_from_annot_quads()
282 quadrilateral->p1.y = quads_array->getY1(i) - crop_box->y1; in create_poppler_quads_from_annot_quads()
283 quadrilateral->p2.x = quads_array->getX2(i) - crop_box->x1; in create_poppler_quads_from_annot_quads()
284 quadrilateral->p2.y = quads_array->getY2(i) - crop_box->y1; in create_poppler_quads_from_annot_quads()
285 quadrilateral->p3.x = quads_array->getX3(i) - crop_box->x1; in create_poppler_quads_from_annot_quads()
286 quadrilateral->p3.y = quads_array->getY3(i) - crop_box->y1; in create_poppler_quads_from_annot_quads()
287 quadrilateral->p4.x = quads_array->getX4(i) - crop_box->x1; in create_poppler_quads_from_annot_quads()
[all …]
/dports/graphics/poppler-utils/poppler-21.12.0/glib/
H A Dpoppler-annot.cc253 PopplerQuadrilateral *quadrilateral = &g_array_index(quads, PopplerQuadrilateral, i); in create_annot_quads_from_poppler_quads() local
255quadrilateral->p1.x, quadrilateral->p1.y, quadrilateral->p2.x, quadrilateral->p2.y, quadrilateral-… in create_annot_quads_from_poppler_quads()
279 PopplerQuadrilateral *quadrilateral = &g_array_index(quads, PopplerQuadrilateral, i); in create_poppler_quads_from_annot_quads() local
281 quadrilateral->p1.x = quads_array->getX1(i) - crop_box->x1; in create_poppler_quads_from_annot_quads()
282 quadrilateral->p1.y = quads_array->getY1(i) - crop_box->y1; in create_poppler_quads_from_annot_quads()
283 quadrilateral->p2.x = quads_array->getX2(i) - crop_box->x1; in create_poppler_quads_from_annot_quads()
284 quadrilateral->p2.y = quads_array->getY2(i) - crop_box->y1; in create_poppler_quads_from_annot_quads()
285 quadrilateral->p3.x = quads_array->getX3(i) - crop_box->x1; in create_poppler_quads_from_annot_quads()
286 quadrilateral->p3.y = quads_array->getY3(i) - crop_box->y1; in create_poppler_quads_from_annot_quads()
287 quadrilateral->p4.x = quads_array->getX4(i) - crop_box->x1; in create_poppler_quads_from_annot_quads()
[all …]
/dports/math/dune-localfunctions/dune-localfunctions-f6628171b2773065ab43f97a77f47cd8c4283d8f/dune/localfunctions/raviartthomas/
H A Draviartthomaslfecache.hh33 …std::make_pair(index(GeometryTypes::quadrilateral), []() { return RT0Cube2DLocalFiniteElement<D,R>… in getImplementations()
46 …std::make_pair(index(GeometryTypes::quadrilateral), []() { return RT1Cube2DLocalFiniteElement<D,R>… in getImplementations()
58 …std::make_pair(index(GeometryTypes::quadrilateral), []() { return RT2Cube2DLocalFiniteElement<D,R>… in getImplementations()
/dports/math/vtk9/VTK-9.1.0/Filters/General/Testing/Cxx/
H A DTestCellValidator.cxx1095 quadrilateral->GetPointIds()->SetNumberOfIds(nPoints); in MakeLagrangeQuadrilateral()
1097 quadrilateral->SetUniformOrderFromNumPoints(nPoints); in MakeLagrangeQuadrilateral()
1098 quadrilateral->Initialize(); in MakeLagrangeQuadrilateral()
1099 double* points = quadrilateral->GetParametricCoords(); in MakeLagrangeQuadrilateral()
1102 quadrilateral->GetPointIds()->SetId(i, i); in MakeLagrangeQuadrilateral()
1106 return quadrilateral; in MakeLagrangeQuadrilateral()
1212 quadrilateral->GetPointIds()->SetNumberOfIds(nPoints); in MakeBezierQuadrilateral()
1214 quadrilateral->SetUniformOrderFromNumPoints(nPoints); in MakeBezierQuadrilateral()
1215 quadrilateral->Initialize(); in MakeBezierQuadrilateral()
1219 quadrilateral->GetPointIds()->SetId(i, i); in MakeBezierQuadrilateral()
[all …]
/dports/science/PETSc/petsc-3.14.1/src/dm/dt/dualspace/impls/lagrange/tests/output/
H A Dex1_2_tensor_continuous_trimmed.out1 New space: quadrilateral, order 1, trimmed 1, tensor 1, continuous 1, form degree -1
10 New space: quadrilateral, order 1, trimmed 1, tensor 1, continuous 1, form degree 0
19 New space: quadrilateral, order 1, trimmed 1, tensor 1, continuous 1, form degree 1
28 New space: quadrilateral, order 1, trimmed 1, tensor 1, continuous 1, form degree 2
67 New space: quadrilateral, order 2, trimmed 1, tensor 1, continuous 1, form degree -1
143 New space: quadrilateral, order 2, trimmed 1, tensor 1, continuous 1, form degree 0
192 New space: quadrilateral, order 2, trimmed 1, tensor 1, continuous 1, form degree 1
268 New space: quadrilateral, order 2, trimmed 1, tensor 1, continuous 1, form degree 2
334 New space: quadrilateral, order 3, trimmed 1, tensor 1, continuous 1, form degree -1
486 New space: quadrilateral, order 3, trimmed 1, tensor 1, continuous 1, form degree 0
[all …]
/dports/lang/clover/mesa-21.3.6/docs/_extra/specs/OLD/
H A DMESA_sprite_point.spec68 POLYGON_SMOOTH does effect the rendering of the quadrilateral, however.
79 POLYGON_MODE does not effect the rasterization of the quadrilateral.
122 aligned quadrilaterals. If the four vertices of the quadrilateral
124 counter-clockwise around the quadrilateral, then the vertex and
/dports/graphics/libosmesa-gallium/mesa-21.3.6/docs/_extra/specs/OLD/
H A DMESA_sprite_point.spec68 POLYGON_SMOOTH does effect the rendering of the quadrilateral, however.
79 POLYGON_MODE does not effect the rasterization of the quadrilateral.
122 aligned quadrilaterals. If the four vertices of the quadrilateral
124 counter-clockwise around the quadrilateral, then the vertex and
/dports/graphics/libosmesa/mesa-21.3.6/docs/_extra/specs/OLD/
H A DMESA_sprite_point.spec68 POLYGON_SMOOTH does effect the rendering of the quadrilateral, however.
79 POLYGON_MODE does not effect the rasterization of the quadrilateral.
122 aligned quadrilaterals. If the four vertices of the quadrilateral
124 counter-clockwise around the quadrilateral, then the vertex and
/dports/graphics/mesa-gallium-xa/mesa-21.3.6/docs/_extra/specs/OLD/
H A DMESA_sprite_point.spec68 POLYGON_SMOOTH does effect the rendering of the quadrilateral, however.
79 POLYGON_MODE does not effect the rasterization of the quadrilateral.
122 aligned quadrilaterals. If the four vertices of the quadrilateral
124 counter-clockwise around the quadrilateral, then the vertex and
/dports/graphics/mesa-gallium-va/mesa-21.3.6/docs/_extra/specs/OLD/
H A DMESA_sprite_point.spec68 POLYGON_SMOOTH does effect the rendering of the quadrilateral, however.
79 POLYGON_MODE does not effect the rasterization of the quadrilateral.
122 aligned quadrilaterals. If the four vertices of the quadrilateral
124 counter-clockwise around the quadrilateral, then the vertex and
/dports/graphics/mesa-dri-gallium/mesa-21.3.6/docs/_extra/specs/OLD/
H A DMESA_sprite_point.spec68 POLYGON_SMOOTH does effect the rendering of the quadrilateral, however.
79 POLYGON_MODE does not effect the rasterization of the quadrilateral.
122 aligned quadrilaterals. If the four vertices of the quadrilateral
124 counter-clockwise around the quadrilateral, then the vertex and

12345678910>>...29