Home
last modified time | relevance | path

Searched refs:circle_y (Results 1 – 13 of 13) sorted by relevance

/dports/graphics/birdfont/birdfont-2.29.5/libbirdfont/
H A DPointTool.vala116 double circle_y;
120 circle_y = center_y + sin (circle_angle) * length;
123 coordinate_y, circle_y));
127 tied_y = circle_y;
H A DBackgroundTool.vala213 double circle_y;
217 circle_y = bg.img_middle_y + sin (circle_angle) * length;
220 coordinate_y, circle_y));
224 rotation_position_y = circle_y;
/dports/astro/siril/siril/src/algos/
H A Dannotate.c69 gboolean is_inside(double circle_x, double circle_y, double rad, double x, double y) { in is_inside() argument
72 if ((x - circle_x) * (x - circle_x) + (y - circle_y) * (y - circle_y) in is_inside()
/dports/graphics/libjxl/libjxl-0.6.1/lib/jxl/
H A Dtest_utils.h298 size_t circle_y = rng(ysize); in GetSomeTestImage() local
321 if ((x - circle_x) * (x - circle_x) + (y - circle_y) * (y - circle_y) < in GetSomeTestImage()
/dports/games/craft/Craft-1.0fbsd/
H A Dbuilder.py78 def circle_y(x, y, z, r, fill=False): function
95 result |= circle_y(x, y, z, r, fill)
/dports/games/libretro-nxengine/nxengine-libretro-10c4381/nxengine/ai/sand/
H A Dsand.cpp761 int circle_x, circle_y; in ai_skullstep_foot() local
780 vector_from_angle(angle, (10 << CSF), &circle_x, &circle_y); in ai_skullstep_foot()
782 o->y = skull->y + (8 << CSF) + circle_y; in ai_skullstep_foot()
/dports/www/firefox/firefox-99.0/third_party/jpeg-xl/lib/jxl/
H A Dtest_utils.h303 size_t circle_y = rng(ysize); in GetSomeTestImage() local
326 if ((x - circle_x) * (x - circle_x) + (y - circle_y) * (y - circle_y) < in GetSomeTestImage()
/dports/games/nxengine/nxengine-evo-2.6.5-1/src/ai/sand/
H A Dsand.cpp824 int circle_x, circle_y; in ai_skullstep_foot() local
843 vector_from_angle(angle, (10 * CSFI), &circle_x, &circle_y); in ai_skullstep_foot()
845 o->y = skull->y + (8 * CSFI) + circle_y; in ai_skullstep_foot()
/dports/graphics/py-scikit-image/scikit-image-0.19.0/skimage/transform/
H A D_hough_transform.pyx66 cdef cnp.ndarray[ndim=1, dtype=cnp.intp_t] circle_x, circle_y
76 circle_x, circle_y = circle_perimeter(0, 0, rad)
93 ty = circle_y[c] + y[p]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/cc/trees/
H A Dlayer_tree_host_pixeltest_masks.cc514 float circle_y = bounds_.height() / 2.f; in PaintContentsToDisplayList() local
516 SkRect::MakeLTRB(circle_x - radius, circle_y - radius, in PaintContentsToDisplayList()
517 circle_x + radius, circle_y + radius), in PaintContentsToDisplayList()
/dports/www/py-bokeh/bokeh-2.3.3/bokeh/server/static/js/types/api/
H A Dplotting.d.ts193 circle_y(args: Partial<MarkerArgs>): TypedGlyphRenderer<Scatter>;
194circle_y(x: MarkerArgs["x"], y: MarkerArgs["y"], args?: Partial<MarkerArgs>): TypedGlyphRenderer<S…
/dports/www/chromium-legacy/chromium-88.0.4324.182/cc/trees/
H A Dlayer_tree_host_pixeltest_masks.cc507 float circle_y = bounds_.height() / 2.f; in PaintContentsToDisplayList() local
509 SkRect::MakeLTRB(circle_x - radius, circle_y - radius, in PaintContentsToDisplayList()
510 circle_x + radius, circle_y + radius), in PaintContentsToDisplayList()
/dports/www/py-bokeh/bokeh-2.3.3/bokeh/plotting/
H A Dfigure.py303 def circle_y(self, **kwargs): member in Figure