Home
last modified time | relevance | path

Searched refs:get_bounding_rect (Results 1 – 25 of 98) sorted by relevance

1234

/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/geo-0.13.0/src/algorithm/
H A Dbounding_rect.rs5 use geo_types::private_utils::{get_bounding_rect, line_string_bounding_rect};
43 get_bounding_rect(self.0.iter().map(|p| p.0)) in bounding_rect()
87 get_bounding_rect(self.0.iter().flat_map(|line| line.0.iter().cloned())) in bounding_rect()
101 get_bounding_rect(line.0.iter().cloned()) in bounding_rect()
114 get_bounding_rect( in bounding_rect()
129 get_bounding_rect(self.to_array().iter().cloned()).unwrap() in bounding_rect()
/dports/graphics/opencv/opencv-4.5.3/modules/imgproc/test/
H A Dtest_boundingrect.cpp62 template <typename T> cv::Rect get_bounding_rect(const vector <Point_<T> > src);
76 template <typename T> cv::Rect CV_BoundingRectTest::get_bounding_rect(const vector <Point_<T> > src) in get_bounding_rect() function in opencv_test::__anon9f00be6e0111::CV_BoundingRectTest
107 cv::Rect right = get_bounding_rect <T> (src); in checking_function_work()
/dports/devel/etl/synfig-1.2.2/synfig-core/src/modules/mod_filter/
H A Dlumakey.h65 using Layer::get_bounding_rect;
66 virtual Rect get_bounding_rect(Context context)const;
/dports/graphics/synfig/synfig-1.2.2/synfig-core/src/modules/mod_filter/
H A Dlumakey.h65 using Layer::get_bounding_rect;
66 virtual Rect get_bounding_rect(Context context)const;
/dports/graphics/synfigstudio/synfig-1.2.2/synfig-core/src/modules/mod_filter/
H A Dlumakey.h65 using Layer::get_bounding_rect;
66 virtual Rect get_bounding_rect(Context context)const;
/dports/devel/etl/synfig-1.2.2/synfig-core/src/modules/mod_noise/
H A Ddistort.h80 using Layer::get_bounding_rect;
81 virtual synfig::Rect get_bounding_rect(synfig::Context context)const;
/dports/graphics/synfig/synfig-1.2.2/synfig-core/src/modules/mod_noise/
H A Ddistort.h80 using Layer::get_bounding_rect;
81 virtual synfig::Rect get_bounding_rect(synfig::Context context)const;
/dports/graphics/synfigstudio/synfig-1.2.2/synfig-core/src/modules/mod_noise/
H A Ddistort.h80 using Layer::get_bounding_rect;
81 virtual synfig::Rect get_bounding_rect(synfig::Context context)const;
/dports/devel/etl/synfig-1.2.2/synfig-core/src/modules/mod_particle/
H A Dplant.h131 using Layer::get_bounding_rect;
132 virtual Rect get_bounding_rect(Context context)const;
/dports/graphics/synfig/synfig-1.2.2/synfig-core/src/modules/mod_particle/
H A Dplant.h131 using Layer::get_bounding_rect;
132 virtual Rect get_bounding_rect(Context context)const;
/dports/graphics/synfigstudio/synfig-1.2.2/synfig-core/src/modules/mod_particle/
H A Dplant.h131 using Layer::get_bounding_rect;
132 virtual Rect get_bounding_rect(Context context)const;
/dports/net/tigervnc-server/tigervnc-1.12.0/common/rfb/
H A DUpdateTracker.cxx86 Rect newbr = dest.get_bounding_rect(); in add_copied()
87 Rect oldbr = copied.get_bounding_rect(); in add_copied()
H A DRegion.cxx151 rfb::Rect rfb::Region::get_bounding_rect() const { in get_bounding_rect() function in rfb::Region
164 extents = get_bounding_rect(); in debug_print()
H A DRegion.h66 Rect get_bounding_rect() const;
/dports/net/tigervnc-viewer/tigervnc-1.12.0/common/rfb/
H A DUpdateTracker.cxx86 Rect newbr = dest.get_bounding_rect(); in add_copied()
87 Rect oldbr = copied.get_bounding_rect(); in add_copied()
H A DRegion.cxx151 rfb::Rect rfb::Region::get_bounding_rect() const { in get_bounding_rect() function in rfb::Region
164 extents = get_bounding_rect(); in debug_print()
H A DRegion.h66 Rect get_bounding_rect() const;
/dports/devel/etl/synfig-1.2.2/synfig-core/src/synfig/layers/
H A Dlayer_rendering_task.h54 virtual Rect get_bounding_rect()const;
/dports/graphics/synfig/synfig-1.2.2/synfig-core/src/synfig/layers/
H A Dlayer_rendering_task.h54 virtual Rect get_bounding_rect()const;
/dports/graphics/synfigstudio/synfig-1.2.2/synfig-core/src/synfig/layers/
H A Dlayer_rendering_task.h54 virtual Rect get_bounding_rect()const;
/dports/devel/etl/synfig-1.2.2/synfig-core/src/modules/lyr_std/
H A Dsupersample.h66 virtual Rect get_bounding_rect(Context context)const;
/dports/graphics/synfig/synfig-1.2.2/synfig-core/src/modules/lyr_std/
H A Dsupersample.h66 virtual Rect get_bounding_rect(Context context)const;
/dports/graphics/synfigstudio/synfig-1.2.2/synfig-core/src/modules/lyr_std/
H A Dsupersample.h66 virtual Rect get_bounding_rect(Context context)const;
/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/geo-types-0.4.3/src/
H A Dprivate_utils.rs15 get_bounding_rect(line_string.0.iter().cloned()) in line_string_bounding_rect()
30 pub fn get_bounding_rect<I, T>(collection: I) -> Option<Rect<T>> in get_bounding_rect() function
/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/geo-types-0.5.0/src/
H A Dprivate_utils.rs15 get_bounding_rect(line_string.0.iter().cloned()) in line_string_bounding_rect()
33 pub fn get_bounding_rect<I, T>(collection: I) -> Option<Rect<T>> in get_bounding_rect() function

1234