Home
last modified time | relevance | path

Searched refs:WCone (Results 1 – 3 of 3) sorted by relevance

/external/opencv3/modules/viz/include/opencv2/viz/
Dwidgets.hpp327 class CV_EXPORTS WCone : public Widget3D class
337WCone(double length, double radius, int resolution = 6.0, const Color &color = Color::white());
348WCone(double radius, const Point3d& center, const Point3d& tip, int resolution = 6.0, const Color …
816 template<> CV_EXPORTS WCone Widget::cast<WCone>();
/external/opencv3/modules/viz/src/
Dshapes.cpp232 cv::viz::WCone::WCone(double length, double radius, int resolution, const Color &color) in WCone() function in cv::viz::WCone
253 cv::viz::WCone::WCone(double radius, const Point3d& center, const Point3d& tip, int resolution, con… in WCone() function in cv::viz::WCone
260 WCone circle(norm(tip - center), radius, resolution, color); in WCone()
265 template<> cv::viz::WCone cv::viz::Widget::cast<cv::viz::WCone>() in cast()
268 return static_cast<WCone&>(widget); in cast()
/external/opencv3/modules/viz/test/
Dtests_simple.cpp424 viz.showWidget("con0", WCone(0.25, 0.125, 6, Color::azure())); in TEST()
425 …viz.showWidget("con1", WCone(0.125, Point3d(0.5, -0.5, 0.5), Point3d(0.5, -1.0, 0.5), 6, Color::tu… in TEST()