Home
last modified time | relevance | path

Searched refs:ptVec (Results 1 – 7 of 7) sorted by relevance

/dports/math/pdal/PDAL-2.3.0/plugins/i3s/lepcc/src/
H A DTest_C_Api.cpp121 vector<Point3D> ptVec(nPts); in main() local
122 errCode = (ErrCode)lepcc_decodeXYZ(ctx, &ptr, len - pos, &nPts, (double*)(&ptVec[0])); in main()
131 fwrite(&ptVec[0], sizeof(Point3D), nPts, fpGT); in main()
149 const Point3D* p = &ptVec[i]; in main()
335 vector<Point3D> ptVec, decPtVec; in main() local
358 ptVec.resize(nPts); in main()
359 fread(&ptVec[0], sizeof(Point3D), nPts, fp); in main()
399 if (ptVec.size() > 0) in main()
402 …hr = lepcc_computeCompressedSizeXYZ(ctx, nPts, (const double*)(&ptVec[0]), maxXErr, maxYErr, maxZE… in main()
462 if (ptVec.size() > 0) in main()
[all …]
/dports/graphics/wdune/wdune-1.926/vcglib/vcg/complex/algorithms/
H A Dpointcloud_normal.h74 std::vector<CoordType> ptVec; variable
80 ptVec.push_back(m.vert[neightId].cP());
83 FitPlaneToPointSet(ptVec,plane);
H A Dintersection.h145 std::vector<Point3<ScalarType> > ptVec; in IntersectionPlaneMesh() local
158 ptVec.clear(); in IntersectionPlaneMesh()
174 ptVec.push_back(pp); in IntersectionPlaneMesh()
180 ptVec.push_back(m.face[i].V(j)->cP()); in IntersectionPlaneMesh()
184 if(ptVec.size()>=2) in IntersectionPlaneMesh()
189 (*vi).P() = ptVec[0]; in IntersectionPlaneMesh()
193 (*vi).P() = ptVec[1]; in IntersectionPlaneMesh()
H A Dcurve_on_manifold.h793 void WalkAlongPolyLine(MeshType &poly, std::vector<VertexType *> &ptVec) in WalkAlongPolyLine() argument
799 if(Distance(base.vert[i].P(),ptVec[0]->P()) < par.polyDistThr) in WalkAlongPolyLine()
841 std::vector< VertexType *> ptVec; in CutWithPolyLine() local
842 FindTerminalPoints(subPoly,ptVec); in CutWithPolyLine()
843 …printf("Component %i (%i edges) has %i terminal points\n",i,subPoly.en, ptVec.size());fflush(stdou… in CutWithPolyLine()
844 SplitMeshWithPoints(base,ptVec,newVertVec); in CutWithPolyLine()
/dports/devel/vcglib/vcglib-2020.09/vcg/complex/algorithms/
H A Dpointcloud_normal.h74 std::vector<CoordType> ptVec; variable
80 ptVec.push_back(m.vert[neightId].cP());
83 FitPlaneToPointSet(ptVec,plane);
H A Dintersection.h144 std::vector<Point3<ScalarType> > ptVec; in IntersectionPlaneMesh() local
156 ptVec.clear(); in IntersectionPlaneMesh()
172 ptVec.push_back(pp); in IntersectionPlaneMesh()
178 ptVec.push_back(m.face[i].V(j)->cP()); in IntersectionPlaneMesh()
182 if(ptVec.size()>=2) in IntersectionPlaneMesh()
187 (*vi).P() = ptVec[0]; in IntersectionPlaneMesh()
191 (*vi).P() = ptVec[1]; in IntersectionPlaneMesh()
/dports/devel/py-trimesh/trimesh-3.5.25/trimesh/
H A Dpoints.py112 ptVec = points - origin
113 pr0 = np.dot(ptVec, axis0)
114 pr1 = np.dot(ptVec, axis1)