Home
last modified time | relevance | path

Searched refs:start_point (Results 1 – 25 of 1097) sorted by relevance

12345678910>>...44

/dports/cad/py-ezdxf/ezdxf-0.16.3/src/ezdxf/math/
H A Dbulge.py56 start_point = polar(center, start_angle, radius)
61 return start_point, end_point, bulge
64 def bulge_3_points(start_point: 'Vertex', end_point: 'Vertex',
80 def bulge_to_arc(start_point: 'Vertex',
100 r = signed_bulge_radius(start_point, end_point, bulge)
102 c = polar(start_point, a, r)
109 def bulge_center(start_point: 'Vertex', end_point: 'Vertex',
122 start_point = Vec2(start_point)
124 return start_point + Vec2.from_angle(a, signed_bulge_radius(start_point,
131 return Vec2(start_point).distance(Vec2(end_point)) * (
[all …]
H A Darc.py56 def start_point(self) -> 'Vec2': member in ConstructionArc
199 start_point = Vec2(start_point)
201 if start_point == end_point:
204 return start_point, end_point
221 start_point, end_point = cls.validate_start_and_end_point(start_point,
227 start_point, end_point = end_point, start_point
229 distance = end_point.distance(start_point)
235 distance_vector = end_point - start_point
271 start_point, end_point)
276 start_point, end_point = end_point, start_point
[all …]
H A D_bezier4p.py142 def subdiv(start_point, end_point, start_t: float, end_t: float): argument
145 chk_point = start_point.lerp(end_point)
151 yield from subdiv(start_point, mid_point, start_t, mid_t)
156 start_point = self._control_points[0]
157 yield start_point
165 yield from subdiv(start_point, end_point, t0, t1)
167 start_point = end_point
324 start_point = end_point
327 control_point_1 = start_point + (
328 -start_point.y * tangent_length, start_point.x * tangent_length)
[all …]
H A D_bezier3p.py116 def subdiv(start_point, end_point, start_t: float, end_t: float): argument
119 chk_point = start_point.lerp(end_point)
125 yield from subdiv(start_point, mid_point, start_t, mid_t)
130 start_point = self._control_points[0]
131 yield start_point
139 yield from subdiv(start_point, end_point, t0, t1)
141 start_point = end_point
/dports/www/chromium-legacy/chromium-88.0.4324.182/ash/wm/gestures/back_gesture/
H A Dback_gesture_affordance_unittest.cc36 gfx::Point start_point(0, kDisplayHeight / 2); in TEST_F() local
38 std::make_unique<BackGestureAffordance>(start_point); in TEST_F()
42 EXPECT_GE(start_point.y(), affordance_bounds.y()); in TEST_F()
46 start_point.set_y(10); in TEST_F()
48 std::make_unique<BackGestureAffordance>(start_point); in TEST_F()
52 EXPECT_LE(start_point.y(), affordance_bounds.y()); in TEST_F()
84 gfx::Point start_point(0, divider_bounds.bottom() + 10); in TEST_F() local
86 std::make_unique<BackGestureAffordance>(start_point); in TEST_F()
90 EXPECT_LT(start_point.y(), affordance_bounds.y()); in TEST_F()
94 start_point.set_y(divider_bounds.bottom() + 150); in TEST_F()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/ash/fast_ink/laser/
H A Dlaser_segment_utils_unittest.cc33 void CheckNormalLineVariables(const gfx::PointF& start_point, in CheckNormalLineVariables() argument
52 void CheckUndefinedNormalLine(const gfx::PointF& start_point, in CheckUndefinedNormalLine() argument
68 void CheckProjectedPoints(const gfx::PointF& start_point, in CheckProjectedPoints() argument
79 ComputeProjectedPoints(start_point, slope, y_intercept, distance, in CheckProjectedPoints()
98 void CheckFirstPointSmaller(const gfx::PointF& start_point, in CheckFirstPointSmaller() argument
254 const gfx::PointF start_point(0.0f, 0.0f); in TEST_F() local
258 CheckFirstPointSmaller(start_point, end_point, positive_angle, in TEST_F()
263 const gfx::PointF start_point(0.0f, 0.0f); in TEST_F() local
267 CheckFirstPointSmaller(start_point, end_point, positive_angle, in TEST_F()
272 const gfx::PointF start_point(0.0f, 0.0f); in TEST_F() local
[all …]
H A Dlaser_segment_utils.cc43 void ComputeNormalLineVariables(const gfx::PointF& start_point, in ComputeNormalLineVariables() argument
48 float rise = end_point.y() - start_point.y(); in ComputeNormalLineVariables()
49 float run = end_point.x() - start_point.x(); in ComputeNormalLineVariables()
60 *start_y_intercept = start_point.y() - *normal_slope * start_point.x(); in ComputeNormalLineVariables()
110 bool IsFirstPointSmallerAngle(const gfx::PointF& start_point, in IsFirstPointSmallerAngle() argument
115 start_point.x() + (end_point.x() - start_point.x()) / 2.0f, in IsFirstPointSmallerAngle()
116 start_point.y() + (end_point.y() - start_point.y()) / 2.0f); in IsFirstPointSmallerAngle()
117 gfx::Vector2dF direction = end_point - start_point; in IsFirstPointSmallerAngle()
/dports/devel/git-extras/git-extras-6.3.0/bin/
H A Dgit-feature36 start_point=$2
63 if [[ -n $remote ]] && [[ -z $start_point ]]
68 if [[ -z $remote ]] && [[ -z $start_point ]]
73 if [[ -n $remote ]] && [[ -n $start_point ]]
75 git create-branch -r $remote --from $start_point $branch
78 if [[ -z $remote ]] && [[ -n $start_point ]]
80 git create-branch --from $start_point $branch
/dports/math/py-yt/yt-4.0.1/yt/data_objects/selection_objects/
H A Dray.py160 self, start_point, end_point, ds=None, field_parameters=None, data_source=None argument
162 validate_3d_array(start_point)
168 if isinstance(start_point, YTArray):
169 self.start_point = self.ds.arr(start_point).to("code_length")
171 self.start_point = self.ds.arr(start_point, "code_length", dtype="float64")
176 if (self.start_point < self.ds.domain_left_edge).any() or (
183 self.vec = self.end_point - self.start_point
184 self._set_center(self.start_point)
185 self.set_field_parameter("center", self.start_point)
211 r = pos - self.start_point
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/src/live_effects/
H A Dlpe-mirror_symmetry.cpp77 registerParameter(&start_point); in LPEMirrorSymmetry()
209 start_point.param_setValue(point_a); in doBeforeEffect()
219 start_point.param_setValue(point_a); in doBeforeEffect()
223 start_point.param_setValue(point_a); in doBeforeEffect()
243 start_point.param_setValue(start_point * trans); in doBeforeEffect()
251 start_point.param_setValue(sp); in doBeforeEffect()
261 start_point.param_setValue(sp); in doBeforeEffect()
443 start_point.param_setValue(point_a, true); in doOnApply()
444 start_point.param_update_default(point_a); in doOnApply()
512 Geom::Point s = start_point; in doEffect_path()
[all …]
/dports/cad/py-ezdxf/ezdxf-0.16.3/src/ezdxf/acc/
H A Dbezier4p.pyx55 def start_point(self) -> Vec3: member in Bezier4P
82 cdef list points = [self.start_point]
98 cdef CppVec3 start_point = (<Vec3> self.start_point).to_cpp_vec3()
108 f.flatten(start_point, end_point, t0, t1)
110 start_point = end_point
148 self.points = [curve.start_point]
185 cdef Vec3 start_point, end_point, cp1, cp2
189 start_point = end_point
193 cp1.x = start_point.x - start_point.y * tangent_length
194 cp1.y = start_point.y + start_point.x * tangent_length
[all …]
H A Dbezier3p.pyx43 def start_point(self) -> Vec3: member in Bezier3P
70 cdef list points = [self.start_point]
86 cdef CppVec3 start_point = (<Vec3> self.start_point).to_cpp_vec3()
96 f.flatten(start_point, end_point, t0, t1)
98 start_point = end_point
135 self.points = [curve.start_point]
137 cdef flatten(self, CppVec3 start_point, CppVec3 end_point, argument
142 cdef double d = mid_point.distance(start_point.lerp(end_point, 0.5))
147 self.flatten(start_point, mid_point, start_t, mid_t)
/dports/math/xldlas/xldlas/
H A Dfiles.c427 start_point = 0; in count_columns()
437 start_point = j; in count_columns()
459 a_string[j - start_point] = '\0'; in count_columns()
465 old_start = start_point; in count_columns()
529 start_point = 0; in import_a_row()
539 start_point = j; in import_a_row()
574 a_string[j - start_point] = '\0'; in import_a_row()
581 old_start = start_point; in import_a_row()
604 start_point = 0; in parse_string_to_column_data()
614 start_point = j; in parse_string_to_column_data()
[all …]
/dports/audio/gsequencer/gsequencer-3.10.4/ags/audio/
H A Dags_fluid_interpolate_4th_order_util.c564 start_point = source[0]; in ags_fluid_interpolate_4th_order_util_pitch_s8()
675 start_point = source[0]; in ags_fluid_interpolate_4th_order_util_pitch_s16()
786 start_point = source[0]; in ags_fluid_interpolate_4th_order_util_pitch_s24()
897 start_point = source[0]; in ags_fluid_interpolate_4th_order_util_pitch_s32()
1008 start_point = source[0]; in ags_fluid_interpolate_4th_order_util_pitch_s64()
1119 start_point = source[0]; in ags_fluid_interpolate_4th_order_util_pitch_float()
1230 start_point = source[0]; in ags_fluid_interpolate_4th_order_util_pitch_double()
1508 start_point = source[0]; in ags_fluid_interpolate_4th_order_util_fill_s8()
1610 start_point = source[0]; in ags_fluid_interpolate_4th_order_util_fill_s16()
1712 start_point = source[0]; in ags_fluid_interpolate_4th_order_util_fill_s24()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/chromeos/extensions/autotest_private/
H A Dautotest_private_apitest.cc177 const gfx::Point start_point = in IN_PROC_BROWSER_TEST_F() local
183 generator.set_current_screen_location(start_point); in IN_PROC_BROWSER_TEST_F()
187 start_point.x(), start_point.y(), 0, ui::EventTimeForNow(), in IN_PROC_BROWSER_TEST_F()
193 const gfx::Point end_point(start_point.x() + 50, start_point.y()); in IN_PROC_BROWSER_TEST_F()
204 const gfx::Point start_point = in IN_PROC_BROWSER_TEST_F() local
206 const gfx::Point end_point(0, start_point.y()); in IN_PROC_BROWSER_TEST_F()
212 generator.set_current_screen_location(start_point); in IN_PROC_BROWSER_TEST_F()
216 start_point.x(), start_point.y(), 0, ui::EventTimeForNow(), in IN_PROC_BROWSER_TEST_F()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/ui/ash/
H A Dback_gesture_browsertest.cc124 const gfx::Point start_point = bounds.left_center(); in IN_PROC_BROWSER_TEST_F() local
126 gfx::Point(start_point.x() + 200, start_point.y()); in IN_PROC_BROWSER_TEST_F()
133 event_generator.set_current_screen_location(start_point); in IN_PROC_BROWSER_TEST_F()
159 event_generator.set_current_screen_location(start_point); in IN_PROC_BROWSER_TEST_F()
194 const gfx::Point start_point = bounds.left_center(); in IN_PROC_BROWSER_TEST_F() local
196 gfx::Point(start_point.x() + 200, start_point.y()); in IN_PROC_BROWSER_TEST_F()
199 event_generator.set_current_screen_location(start_point); in IN_PROC_BROWSER_TEST_F()
H A Dlauncher_drag_interactive_uitest.cc71 gfx::Point start_point = gfx::Point( in IN_PROC_BROWSER_TEST_F() local
74 gfx::Point end_point(start_point); in IN_PROC_BROWSER_TEST_F()
78 start_point, end_point, base::TimeDelta::FromMilliseconds(1000))); in IN_PROC_BROWSER_TEST_F()
137 gfx::Point start_point = gfx::Point(display_bounds.width() / 4, 10); in IN_PROC_BROWSER_TEST_P() local
138 gfx::Point end_point(start_point); in IN_PROC_BROWSER_TEST_P()
143 start_point, end_point, base::TimeDelta::FromMilliseconds(1000))); in IN_PROC_BROWSER_TEST_P()
/dports/textproc/cast2gif/cast2gif-0.1.0/cargo-crates/raqote-0.7.14/src/
H A Ddash.rs12 let mut start_point = None; in dash_path() localVariable
55 start_point = Some(pt); in dash_path()
114 if let (Some(current), Some(start_point)) = (cur_pt, start_point) { in dash_path()
118 to: start_point, in dash_path()
154 dashed.line_to(start_point.x, start_point.y); in dash_path()
167 cur_pt = Some(start_point); in dash_path()
/dports/games/scummvm/scummvm-2.5.1/engines/grim/update/
H A Dpackfile.cpp96 void PackFile::decode(uint8 *data, uint32 dataSize, uint32 start_point) { in decode() argument
98 data[i] ^= uint8(_codeTable[(i + start_point) % _kCodeTableSize]); in decode()
99 data[i] -= uint8(_codeTable[(i + start_point) % _kCodeTableSize] >> 8); in decode()
104 uint32 start_point, count; in read() local
106 start_point = uint32(pos()); in read()
113 decode((uint8*)dataPtr, count, start_point); in read()
/dports/games/residualvm/residualvm-0.3.1/engines/grim/update/
H A Dpackfile.cpp96 void PackFile::decode(uint8 *data, uint32 dataSize, uint32 start_point) { in decode() argument
98 data[i] ^= uint8(_codeTable[(i + start_point) % _kCodeTableSize]); in decode()
99 data[i] -= uint8(_codeTable[(i + start_point) % _kCodeTableSize] >> 8); in decode()
104 uint32 start_point, count; in read() local
106 start_point = uint32(pos()); in read()
113 decode((uint8*)dataPtr, count, start_point); in read()
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/surface/include/pcl/surface/3rdparty/opennurbs/
H A Dopennurbs_arc.h127 const ON_2dPoint& start_point,
141 const ON_3dPoint& start_point,
239 const ON_2dPoint& start_point,
253 const ON_3dPoint& start_point,
268 const ON_2dPoint& start_point,
283 const ON_3dPoint& start_point,
/dports/math/gismo/gismo-21.12.0/external/onurbs/
H A Dopennurbs_arc.h127 const ON_2dPoint& start_point,
141 const ON_3dPoint& start_point,
239 const ON_2dPoint& start_point,
253 const ON_3dPoint& start_point,
268 const ON_2dPoint& start_point,
283 const ON_3dPoint& start_point,
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/paint/
H A Dtext_decoration_info.cc259 FloatPoint start_point = StartPoint(line); in BoundsForLine() local
268 return FloatRect(start_point.X(), start_point.Y(), width_, in BoundsForLine()
271 return FloatRect(start_point.X(), start_point.Y() + DoubleOffset(line), in BoundsForLine()
274 return FloatRect(start_point.X(), start_point.Y(), width_, in BoundsForLine()
289 FloatPoint start_point = StartPoint(line); in BoundsForDottedOrDashed() local
292 start_point, width_, ResolvedThickness(), in BoundsForDottedOrDashed()
342 FloatPoint start_point = StartPoint(line); in PrepareWavyStrokePath() local
347 FloatPoint p1(start_point + FloatPoint(0, wave_offset)); in PrepareWavyStrokePath()
348 FloatPoint p2(start_point + FloatPoint(width_, wave_offset)); in PrepareWavyStrokePath()
/dports/games/wyrmsun/Wyrmsun-3.5.4/data/spells/
H A Dshocking_grasp.cfg14 [start_point]
16 [/start_point]
21 [start_point]
23 [/start_point]
/dports/mail/sqlgrey/sqlgrey-1.8.0/lib/DBIx-DBCluster-0.01/
H A DDBCluster.pm60 my $start_point = int(rand($#{$cluster->{'WRITE_HOSTS'}} + 1));
63 $write_host = @{$cluster->{'WRITE_HOSTS'}}[$start_point];
74 $start_point++;
75 $start_point = 0 if $start_point > $#{$cluster->{'WRITE_HOSTS'}};
87 $start_point = int(rand($#{$cluster->{'READ_HOSTS'}} + 1));
89 my $read_host = @{$cluster->{'READ_HOSTS'}}[$start_point];
106 $start_point++;
107 $start_point = 0 if $start_point > $#{$cluster->{'READ_HOSTS'}};

12345678910>>...44