Home
last modified time | relevance | path

Searched refs:new_point (Results 1 – 25 of 472) sorted by relevance

12345678910>>...19

/dports/science/dalton/dalton-66052b3af5ea7225e31178bf9a8b031913c72190/DALTON/mlcc/
H A Dmlcc_work.F90116 new_point%previous => current
117 new_point%next => null()
118 new_point%length = length
120 new_point%point => point
122 new_point%in_use = .true.
124 list_tail => new_point
177 new_point%previous => current
178 new_point%next => null()
182 new_point%int_point => point
183 new_point%in_use = .true.
[all …]
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/segmentation/src/
H A Dsupervoxel_clustering.cpp63 data_.xyz_[0] += new_point.x; in addPoint()
64 data_.xyz_[1] += new_point.y; in addPoint()
65 data_.xyz_[2] += new_point.z; in addPoint()
67 data_.rgb_[0] += static_cast<float> (new_point.r); in addPoint()
68 data_.rgb_[1] += static_cast<float> (new_point.g); in addPoint()
78 data_.xyz_[0] += new_point.x; in addPoint()
79 data_.xyz_[1] += new_point.y; in addPoint()
80 data_.xyz_[2] += new_point.z; in addPoint()
119 data_.xyz_[0] += new_point.x; in addPoint()
120 data_.xyz_[1] += new_point.y; in addPoint()
[all …]
/dports/cad/py-ezdxf/ezdxf-0.16.3/tests/test_02_dxf_graphics/
H A Dtest_243_replace_entity.py22 add_entity(new_point, msp)
25 assert new_point in msp
26 assert new_point.dxf.handle in db
35 replace_entity(point, new_point, msp)
37 assert new_point in msp
38 assert new_point.dxf.handle in db
39 assert new_point.dxf.handle == handle
51 replace_entity(point, new_point, msp)
53 assert new_point not in msp
54 assert new_point.dxf.handle in db
[all …]
/dports/graphics/blender/blender-2.91.0/source/blender/editors/mask/
H A Dmask_add.c68 bezt = &new_point->bezt; in setup_vertex_point()
158 if (new_point->parent.id) { in setup_vertex_point()
174 MASKPOINT_SEL_ALL(new_point); in setup_vertex_point()
268 MaskSplinePoint *new_point; in add_vertex_subdivide() local
287 mask_layer->act_point = new_point; in add_vertex_subdivide()
371 *ref_point = *new_point; in add_vertex_extrude()
372 memset(new_point, 0, sizeof(*new_point)); in add_vertex_extrude()
379 mask_layer->act_point = new_point; in add_vertex_extrude()
416 new_point = spline->points; in add_vertex_new()
418 mask_layer->act_point = new_point; in add_vertex_new()
[all …]
/dports/science/fastjet/fastjet-3.3.4/src/
H A DClosestPair2D.cc357 new_point->coord = new_coord; in insert()
360 _insert_into_search_tree(new_point); in insert()
367 return _ID(new_point); in insert()
387 new_point->coord = position; in replace()
390 _insert_into_search_tree(new_point); in replace()
397 return _ID(new_point); in replace()
419 new_point->coord = new_positions[i]; in replace_many()
421 _insert_into_search_tree(new_point); in replace_many()
423 new_IDs.push_back(_ID(new_point)); in replace_many()
452 new_point->circ[ishift] = new_circ; in _insert_into_search_tree()
[all …]
/dports/devel/shiboken2/pyside-setup-opensource-src-5.15.2/sources/shiboken2/tests/samplebinding/
H A Dcopy_test.py57 new_point = copy.copy(point)
59 self.assertTrue(point is not new_point)
60 self.assertEqual(point, new_point)
69 new_point = copy.deepcopy([point])[0]
71 self.assertTrue(point is not new_point)
72 self.assertEqual(point, new_point)
84 new_point = pickle.loads(data)
86 self.assertEqual(point, new_point)
87 self.assertTrue(point is not new_point)
/dports/devel/pyside2/pyside-setup-opensource-src-5.15.2/sources/shiboken2/tests/samplebinding/
H A Dcopy_test.py57 new_point = copy.copy(point)
59 self.assertTrue(point is not new_point)
60 self.assertEqual(point, new_point)
69 new_point = copy.deepcopy([point])[0]
71 self.assertTrue(point is not new_point)
72 self.assertEqual(point, new_point)
84 new_point = pickle.loads(data)
86 self.assertEqual(point, new_point)
87 self.assertTrue(point is not new_point)
/dports/devel/pyside2-tools/pyside-setup-opensource-src-5.15.2/sources/shiboken2/tests/samplebinding/
H A Dcopy_test.py57 new_point = copy.copy(point)
59 self.assertTrue(point is not new_point)
60 self.assertEqual(point, new_point)
69 new_point = copy.deepcopy([point])[0]
71 self.assertTrue(point is not new_point)
72 self.assertEqual(point, new_point)
84 new_point = pickle.loads(data)
86 self.assertEqual(point, new_point)
87 self.assertTrue(point is not new_point)
/dports/biology/ugene/ugene-40.1/src/plugins_3rdparty/ball/src/source/STRUCTURE/
H A DtriangulatedSAS.cpp347 if (new_point == NULL) in createPoints()
351 new_point->index_ = -1; in createPoints()
353 part.insert(new_point); in createPoints()
476 if (new_point == NULL) in onePointOutside()
479 new_point->point_ = pos; in onePointOutside()
480 new_point->index_ = -1; in onePointOutside()
481 part.insert(new_point); in onePointOutside()
556 if (new_point == NULL) in twoPointsOutside()
559 new_point->point_ = pos; in twoPointsOutside()
560 new_point->index_ = -1; in twoPointsOutside()
[all …]
/dports/www/py-django-haystack/django-haystack-2.8.1/haystack/utils/
H A Dgeo.py42 new_point = point.clone()
44 if not new_point.srid:
46 new_point.srid = WGS_84_SRID
47 elif new_point.srid != WGS_84_SRID:
49 new_point.transform(WGS_84_SRID)
51 return new_point
/dports/math/cgal/CGAL-5.3/include/CGAL/
H A DStream_lines_2.h386 stl.push_front(new_point); in integrate_forward()
394 old_point = new_point; in integrate_forward()
407 stl.push_front(new_point); in integrate_forward()
415 stl.push_front(new_point); in integrate_forward()
422 stl.push_front(new_point); in integrate_forward()
516 stl.push_back(new_point); in integrate_backward()
518 Point_2 old_point = new_point; in integrate_backward()
522 old_point = new_point; in integrate_backward()
536 stl.push_back(new_point); in integrate_backward()
544 stl.push_back(new_point); in integrate_backward()
[all …]
/dports/math/ogdf/OGDF/src/ogdf/energybased/fmmm/
H A Dnumexcept.cpp50 DPoint new_point; in choose_distinct_random_point_in_disque() local
64 new_point.m_x = old_point.m_x+mindist*rand_x*epsilon; in choose_distinct_random_point_in_disque()
65 new_point.m_y = old_point.m_y+mindist*rand_y*epsilon; in choose_distinct_random_point_in_disque()
66 } while ((old_point == new_point)||((old_point-new_point).norm() >= mindist*epsilon)); in choose_distinct_random_point_in_disque()
85 new_point.m_x = old_point.m_x+mindist_x*rand_x*epsilon; in choose_distinct_random_point_in_disque()
86 new_point.m_y = old_point.m_y+mindist_y*rand_y*epsilon; in choose_distinct_random_point_in_disque()
87 } while (old_point == new_point); in choose_distinct_random_point_in_disque()
96 return new_point; in choose_distinct_random_point_in_disque()
/dports/science/py-pymol/pymol-open-source-2.4.0/data/shaders/
H A Dcylinder.fs83 vec3 new_point = ray_target + dist * ray_direction;
85 vec3 tmp_point = new_point - base;
111 float dp = clamp(-half_bond*new_point.z*inv_height, 0., .5);
118 bool cap_test_base = 0.0 > dot((new_point - base), axis);
119 bool cap_test_end = 0.0 < dot((new_point - end_cyl), axis);
143 new_point = near * ray_direction + ray_origin;
144 normal = normalize(new_point - thisbase);
152 new_point = ray_direction * near + ray_origin;
154 if (dot(new_point - thisbase, new_point - thisbase) > radius2)
161 vec2 clipZW = new_point.z * g_ProjectionMatrix[2].zw +
[all …]
/dports/graphics/blender/blender-2.91.0/extern/draco/dracoenc/src/draco/core/
H A Dbounding_box.h37 inline void update_bounding_box(const Vector3f &new_point) { in update_bounding_box() argument
39 if (new_point[i] < min_point_[i]) in update_bounding_box()
40 min_point_[i] = new_point[i]; in update_bounding_box()
41 if (new_point[i] > max_point_[i]) in update_bounding_box()
42 max_point_[i] = new_point[i]; in update_bounding_box()
/dports/cad/gmsh/gmsh-4.9.2-source/utils/converters/autocad/
H A Ddxf2geo.pl176 my $p1 = new_point($x1, $y1);
184 my $p2 = new_point($x2, $y2);
211 my $c0 = new_point($x1, $y1);
219 my $p1 = new_point($x2, $y2);
222 my $p2 = new_point($x2, $y2);
225 my $p3 = new_point($x2, $y2);
228 my $p4 = new_point($x2, $y2);
279 my $c0 = new_point($x1, $y1);
294 my $p1 = new_point($x2, $y2);
386 $p1 = new_point($x1, $y1);
[all …]
/dports/archivers/draco/draco-1.4.3/src/draco/core/
H A Dbounding_box.h42 void Update(const Vector3f &new_point) { in Update() argument
44 if (new_point[i] < min_point_[i]) { in Update()
45 min_point_[i] = new_point[i]; in Update()
47 if (new_point[i] > max_point_[i]) { in Update()
48 max_point_[i] = new_point[i]; in Update()
/dports/multimedia/assimp/assimp-5.1.3/contrib/draco/src/draco/core/
H A Dbounding_box.h42 void Update(const Vector3f &new_point) { in Update() argument
44 if (new_point[i] < min_point_[i]) { in Update()
45 min_point_[i] = new_point[i]; in Update()
47 if (new_point[i] > max_point_[i]) { in Update()
48 max_point_[i] = new_point[i]; in Update()
/dports/devel/vcglib/vcglib-2020.09/wrap/gui/
H A Dtrackmode.h238 void Apply (Trackball * trackball, Point3f new_point);
275 void Apply (Trackball * trackball, Point3f new_point);
325 void Apply (Trackball * trackball, Point3f new_point);
377 void Apply (Trackball * trackball, Point3f new_point);
456 void Apply (Trackball * trackball, Point3f new_point);
534 void Apply (Trackball * trackball, Point3f new_point);
610 void Apply (Trackball * trackball, Point3f new_point);
705 void Apply (Trackball * trackball, Point3f new_point);
899 void Apply (Trackball * trackball, Point3f new_point);
1027 void Apply (Trackball * trackball, Point3f new_point);
[all …]
H A Dtrackmode.cpp76 Point3f hitNew = HitSphere (tb, new_point); in Apply()
95 void PanMode::Apply (Trackball * tb, Point3f new_point) in Apply() argument
98 Point3f hitNew = HitViewPlane (tb, new_point); in Apply()
116 void ZMode::Apply (Trackball * tb, Point3f new_point) in Apply() argument
198 Point3f hitNew = HitViewPlane (tb, new_point); in Apply()
355 Point3f old_point,new_point,prev_point,next_point; in Apply() local
359 tb->Translate (new_point - old_point); in Apply()
536 delta_mouse=tb->camera.Project(status)-new_point; in Apply()
696 Point3f hitNew = HitViewPlane (tb, new_point); in Apply()
813 Point3f hitNew = new_point; in Apply()
[all …]
/dports/graphics/wdune/wdune-1.926/vcglib/wrap/gui/
H A Dtrackmode.h238 void Apply (Trackball * trackball, Point3f new_point);
275 void Apply (Trackball * trackball, Point3f new_point);
325 void Apply (Trackball * trackball, Point3f new_point);
377 void Apply (Trackball * trackball, Point3f new_point);
456 void Apply (Trackball * trackball, Point3f new_point);
534 void Apply (Trackball * trackball, Point3f new_point);
610 void Apply (Trackball * trackball, Point3f new_point);
705 void Apply (Trackball * trackball, Point3f new_point);
899 void Apply (Trackball * trackball, Point3f new_point);
1027 void Apply (Trackball * trackball, Point3f new_point);
[all …]
H A Dtrackmode.cpp71 Point3f hitNew = HitSphere (tb, new_point); in Apply()
90 void PanMode::Apply (Trackball * tb, Point3f new_point) in Apply() argument
93 Point3f hitNew = HitViewPlane (tb, new_point); in Apply()
111 void ZMode::Apply (Trackball * tb, Point3f new_point) in Apply() argument
193 Point3f hitNew = HitViewPlane (tb, new_point); in Apply()
350 Point3f old_point,new_point,prev_point,next_point; in Apply() local
354 tb->Translate (new_point - old_point); in Apply()
531 delta_mouse=tb->camera.Project(status)-new_point; in Apply()
691 Point3f hitNew = HitViewPlane (tb, new_point); in Apply()
808 Point3f hitNew = new_point; in Apply()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/remoting/client/ui/
H A Ddesktop_viewport.cc285 ViewMatrix::Point new_point = point; in ConstrainPointToBounds() local
286 if (new_point.x < bounds.left) { in ConstrainPointToBounds()
287 new_point.x = bounds.left; in ConstrainPointToBounds()
288 } else if (new_point.x > bounds.right) { in ConstrainPointToBounds()
289 new_point.x = bounds.right; in ConstrainPointToBounds()
292 if (new_point.y < bounds.top) { in ConstrainPointToBounds()
293 new_point.y = bounds.top; in ConstrainPointToBounds()
294 } else if (new_point.y > bounds.bottom) { in ConstrainPointToBounds()
295 new_point.y = bounds.bottom; in ConstrainPointToBounds()
297 return new_point; in ConstrainPointToBounds()
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/stereo/include/pcl/stereo/impl/
H A Ddisparity_map_converter.hpp270 PointT new_point; in compute() local
275 intensity_accessor.set(new_point, in compute()
287 new_point.x = point_3D.x; in compute()
288 new_point.y = point_3D.y; in compute()
289 new_point.z = point_3D.z; in compute()
292 new_point.x = std::numeric_limits<float>::quiet_NaN(); in compute()
293 new_point.y = std::numeric_limits<float>::quiet_NaN(); in compute()
294 new_point.z = std::numeric_limits<float>::quiet_NaN(); in compute()
297 out_cloud[disparity_point] = new_point; in compute()
/dports/games/emptyepsilon/EmptyEpsilon-EE-2021.06.23/src/
H A DpathPlanner.cpp102 sf::Vector2f new_point; in plan() local
103 if (checkToAvoid(p0, p1, new_point)) in plan()
105 route.insert(route.begin() + insert_idx, new_point); in plan()
125 sf::Vector2f new_point; in plan() local
127 if (!checkToAvoid(p0, p1, new_point)) in plan()
148 sf::Vector2f new_point; in recursivePlan() local
149 if (recursion_counter < 100 && checkToAvoid(start, end, new_point)) in recursivePlan()
152 recursivePlan(start, new_point, recursion_counter); in recursivePlan()
153 recursivePlan(new_point, end, recursion_counter); in recursivePlan()
159 bool PathPlanner::checkToAvoid(sf::Vector2f start, sf::Vector2f end, sf::Vector2f& new_point, sf::V… in checkToAvoid() argument
[all …]
/dports/games/xray_re-tools/xray_re-tools-52721d2/sources/utils/aiwrapper/
H A Dsyncer_game_spawn.cxx53 way_point_gs_vec_it new_point = new_path->points.begin(); in add_level() local
55 it1 != end1; ++it1, ++new_point) { in add_level()
56 new_point->name = it1->name; in add_level()
57 new_point->position = it1->position; in add_level()
58 new_point->flags = it1->flags; in add_level()
61 new_point->node_id = ai.vertex_id(position); in add_level()
62 new_point->graph_id = gct.graph_id(new_point->node_id); in add_level()
223 it1 != end1; ++it1, ++new_point) { in split_paths()
224 new_point->name = it1->name; in split_paths()
225 new_point->position = it1->position; in split_paths()
[all …]

12345678910>>...19