Home
last modified time | relevance | path

Searched refs:end_points (Results 1 – 14 of 14) sorted by relevance

/third_party/boost/boost/polygon/
Dpolygon_traits.hpp50 static inline iterator_type end_points(const T& t) { in end_points() function
78 static inline iterator_type end_points(const T& t) { in end_points() function
377 set_points(T& t, iT begin_points, iT end_points) { in set_points() argument
378 polygon_mutable_traits<T>::set_points(t, begin_points, end_points); in set_points()
459 end_points(const T& polygon) { in end_points() function
460 return polygon_traits<T>::end_points(polygon); in end_points()
504 polygon_traits<T2>::end_points(rvalue)); in assign()
515 polygon_traits<T2>::end_points(rvalue)); in assign()
526 polygon_traits<T2>::end_points(rvalue)); in assign()
537 polygon_traits<T2>::end_points(rvalue)); in assign()
[all …]
Dpolygon_45_set_data.hpp384 …insert_vertex_sequence(begin_points(geometry_object), end_points(geometry_object), winding(geometr… in insert_dispatch()
388 …insert_vertex_sequence(begin_points(geometry_object), end_points(geometry_object), winding(geometr… in insert_dispatch()
392 insert_vertex_sequence(begin_points(*itr), end_points(*itr), winding(*itr), !is_hole); in insert_dispatch()
397 …insert_vertex_sequence(begin_points(geometry_object), end_points(geometry_object), winding(geometr… in insert_dispatch()
401 …insert_vertex_sequence(begin_points(geometry_object), end_points(geometry_object), winding(geometr… in insert_dispatch()
405 insert_vertex_sequence(begin_points(*itr), end_points(*itr), winding(*itr), !is_hole); in insert_dispatch()
1101 real_end = end_points(poly); in insert_with_resize_dispatch()
Dpolygon_set_data.hpp122 …insert_vertex_sequence(begin_points(polygon_object), end_points(polygon_object), winding(polygon_o… in insert()
607 real_end = end_points(poly); in insert_with_resize_dispatch()
/third_party/boost/boost/geometry/geometries/adapted/boost_polygon/
Dring_proxy.hpp53 boost::polygon::end_points(ring) in push_back()
131 ? boost::polygon::end_points(*m_hole_it) in end()
132 : boost::polygon::end_points(*m_polygon_pointer) in end()
139 ? boost::polygon::end_points(*m_hole_it) in end()
140 : boost::polygon::end_points(*m_polygon_pointer) in end()
156 boost::polygon::end_points(p)); in clear()
Dring.hpp65 boost::polygon::end_points(data) in apply()
86 boost::polygon::end_points(data) in apply()
/third_party/boost/boost/polygon/detail/
Dminkowski.hpp56 … convolve_two_point_sequences(result, b, e, begin_points(polygons[i]), end_points(polygons[i])); in convolve_point_sequence_with_polygons()
59 convolve_two_point_sequences(result, b, e, begin_points(*itrh), end_points(*itrh)); in convolve_point_sequence_with_polygons()
72 end_points(a_polygons[ai]), b_polygons); in convolve_two_polygon_sets()
76 end_points(*itrh), b_polygons); in convolve_two_polygon_sets()
Diterator_geometry_to_set.hpp101 itre = end_points(polygon); in iterator_geometry_to_set()
Dscan_arbitrary.hpp1609 itr != end_points(polygon_object); ++itr) { in insert()
/third_party/flutter/engine/flutter/lib/ui/painting/
Dgradient.cc35 void CanvasGradient::initLinear(const tonic::Float32List& end_points, in initLinear() argument
40 FML_DCHECK(end_points.size() == 4); in initLinear()
56 reinterpret_cast<const SkPoint*>(end_points.data()), in initLinear()
Dgradient.h35 void initLinear(const tonic::Float32List& end_points,
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-ot-var-gvar-table.hh561 hb_vector_t<unsigned> end_points; in apply_deltas_to_points() local
564 end_points.push (i); in apply_deltas_to_points()
608 for (unsigned c = 0; c < end_points.length; c++) in apply_deltas_to_points()
610 unsigned end_point = end_points[c]; in apply_deltas_to_points()
/third_party/harfbuzz/src/
Dhb-ot-var-gvar-table.hh557 hb_vector_t<unsigned> end_points; in apply_deltas_to_points() local
560 end_points.push (i); in apply_deltas_to_points()
604 for (unsigned c = 0; c < end_points.length; c++) in apply_deltas_to_points()
606 unsigned end_point = end_points[c]; in apply_deltas_to_points()
/third_party/mindspore/mindspore/dataset/vision/
Dpy_transforms_util.py927 end_points = [top_left, top_right, bottom_right, bottom_left]
928 return start_points, end_points
931 def perspective(img, start_points, end_points, interpolation=Inter.BICUBIC): argument
963 coeffs = _input_to_coeffs(start_points, end_points)
Dpy_transforms.py1025 start_points, end_points = util.get_perspective_params(
1027 return util.perspective(img, start_points, end_points, self.interpolation)