Home
last modified time | relevance | path

Searched refs:the_points (Results 1 – 12 of 12) sorted by relevance

/dports/databases/pgrouting/pgrouting-3.2.0/sql/topology/
H A DextractVertices.sql177 the_points AS (
184 FROM the_points$q$;
211 the_points AS (
218 FROM the_points$q$;
251 the_points AS (
258 FROM the_points$q$;
280 the_points AS (
287 FROM the_points$q$;
309 the_points AS (
316 FROM the_points$q$;
[all …]
/dports/science/py-scipy/scipy-1.7.1/scipy/integrate/
H A Dquadpack.py471 the_points = numpy.unique(points)
472 the_points = the_points[a < the_points]
473 the_points = the_points[the_points < b]
474 the_points = numpy.concatenate((the_points, (0., 0.)))
475 return _quadpack._qagpe(func,a,b,the_points,args,full_output,epsabs,epsrel,limit)
/dports/editors/libreoffice/libreoffice-7.2.6.2/qadevOOo/tests/java/mod/_svx/
H A DSvxShapePolyPolygonBezier.java197 Point[][] the_points = new Point[1][2]; in createTestEnvironment() local
198 the_points[0] = points; in createTestEnvironment()
208 coords.Coordinates=the_points; in createTestEnvironment()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/qadevOOo/tests/java/mod/_svx/
H A DSvxShapePolyPolygonBezier.java197 Point[][] the_points = new Point[1][2]; in createTestEnvironment() local
198 the_points[0] = points; in createTestEnvironment()
208 coords.Coordinates=the_points; in createTestEnvironment()
/dports/databases/pgrouting/pgrouting-3.2.0/docqueries/topology/
H A Ddoc-pgr_extractVertices.result64 the_points AS (
71 FROM the_points;
/dports/databases/pgrouting/pgrouting-3.2.0/src/withPoints/
H A Dpgr_withPoints.cpp374 std::vector<Point_on_edge_t> the_points( in create_new_edges() local
377 for (auto &point : the_points) { in create_new_edges()
/dports/databases/pgadmin3/pgadmin3-1.22.2/pgadmin/ogl/
H A Dbasic2.cpp42 void wxPolygonShape::Create(wxList *the_points) in Create() argument
46 if (!the_points) in Create()
53 m_originalPoints = the_points; in Create()
58 wxNode *node = the_points->GetFirst(); in Create()
/dports/x11-toolkits/wxgtk28-common/wxGTK-2.8.12/contrib/src/ogl/
H A Dbasic2.cpp58 void wxPolygonShape::Create(wxList *the_points) in Create() argument
62 if (!the_points) in Create()
69 m_originalPoints = the_points; in Create()
74 wxObjectList::compatibility_iterator node = the_points->GetFirst(); in Create()
/dports/x11-toolkits/wxgtk28-contrib/wxGTK-2.8.12/contrib/src/ogl/
H A Dbasic2.cpp58 void wxPolygonShape::Create(wxList *the_points) in Create() argument
62 if (!the_points) in Create()
69 m_originalPoints = the_points; in Create()
74 wxObjectList::compatibility_iterator node = the_points->GetFirst(); in Create()
/dports/x11-toolkits/wxgtk28-contrib-common/wxGTK-2.8.12/contrib/src/ogl/
H A Dbasic2.cpp58 void wxPolygonShape::Create(wxList *the_points) in Create() argument
62 if (!the_points) in Create()
69 m_originalPoints = the_points; in Create()
74 wxObjectList::compatibility_iterator node = the_points->GetFirst(); in Create()
/dports/x11-toolkits/wxgtk28/wxGTK-2.8.12/contrib/src/ogl/
H A Dbasic2.cpp58 void wxPolygonShape::Create(wxList *the_points) in Create() argument
62 if (!the_points) in Create()
69 m_originalPoints = the_points; in Create()
74 wxObjectList::compatibility_iterator node = the_points->GetFirst(); in Create()
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/wx/lib/ogl/
H A Dbasic.py2869 def Create(self, the_points = None): argument
2876 if not the_points:
2880 self._originalPoints = the_points
2884 for point in the_points: