Home
last modified time | relevance | path

Searched refs:polymesh (Results 1 – 25 of 152) sorted by relevance

1234567

/dports/cad/py-ezdxf/ezdxf-0.16.3/tests/test_02_dxf_graphics/
H A Dtest_210_polyline_explode.py156 def polymesh(): function
158 polymesh = msp.add_polymesh((3, 3))
161 polymesh.set_mesh_vertex((m, n), (m, n))
162 return polymesh
165 def test_polymesh_virtual_entities(polymesh): argument
166 result = list(polymesh.virtual_entities())
184 def test_closed_polymesh(polymesh): argument
185 polymesh.close(m_close=True, n_close=True)
186 assert polymesh.is_m_closed is True
187 assert polymesh.is_n_closed is True
[all …]
/dports/cad/py-ezdxf/ezdxf-0.16.3/src/ezdxf/render/
H A Dpolyline.py164 polymesh = cast('Polymesh', polyline)
165 assert polymesh.dxftype() == 'POLYLINE'
166 assert polymesh.is_polygon_mesh
168 doc = polymesh.doc
169 mesh = polymesh.get_mesh_vertex_cache()
170 dxfattribs = polymesh.graphic_properties()
171 m_count = polymesh.dxf.m_count
172 n_count = polymesh.dxf.n_count
173 m_range = m_count - int(not polymesh.is_m_closed)
174 n_range = n_count - int(not polymesh.is_n_closed)
/dports/cad/py-ezdxf/ezdxf-0.16.3/integration_tests/
H A Dtest_polyline_entity.py19 def build_mesh(polymesh): argument
20 m_size = polymesh.dxf.m_count
21 n_size = polymesh.dxf.n_count
31 polymesh.set_mesh_vertex(pos=(x, y), point=(x, y, z))
63 polymesh = layout.add_polymesh(size=(MSIZE, MSIZE))
64 build_mesh(polymesh)
/dports/graphics/alembic/alembic-1.8.3/prman/Procedural/
H A DProcMain.cpp182 IPolyMesh polymesh( baseObject, kWrapExisting ); in WalkObject() local
183 ApplyResources( polymesh, args ); in WalkObject()
186 ApplyObjectMaterial(polymesh, args ); in WalkObject()
190 ProcessPolyMesh( polymesh, args ); in WalkObject()
193 nextParentObject = polymesh; in WalkObject()
H A DWriteGeo.h52 void ProcessPolyMesh( IPolyMesh &polymesh, ProcArgs &args );
H A DREADME30 …ating for this, enabling -flipv applies (1-v) to texture coordinates of polymesh and subdmesh prim…
H A DWriteGeo.cpp182 void ProcessPolyMesh( IPolyMesh &polymesh, ProcArgs &args ) in ProcessPolyMesh() argument
184 IPolyMeshSchema &ps = polymesh.getSchema(); in ProcessPolyMesh()
/dports/devel/vcglib/vcglib-2020.09/apps/unsupported/quadrangulator/
H A Dquadrangulator.cpp148 MyPolyMesh polymesh; in main() local
154 Quad.Quadrangulate(trimesh,polymesh); in main()
156 tri::io::Exporter<MyPolyMesh>::Save(polymesh,outFilename); in main()
/dports/graphics/alembic/alembic-1.8.3/arnold/Procedural/
H A DProcMain.cpp159 IPolyMesh polymesh( parent, ohead.getName() ); in WalkObject() local
167 if ( polymesh.getSchema().hasFaceSet( *I ) ) in WalkObject()
173 ProcessPolyMesh( polymesh, args, xformSamples, faceSetName ); in WalkObject()
178 nextParentObject = polymesh; in WalkObject()
H A DWriteGeo.h48 void ProcessPolyMesh( IPolyMesh &polymesh, ProcArgs &args,
H A DWriteGeo.cpp516 void ProcessPolyMesh( IPolyMesh &polymesh, ProcArgs &args, in ProcessPolyMesh() argument
523 polymesh, args, sampleTimes, vidxs, 0, xformSamples, in ProcessPolyMesh()
533 IPolyMeshSchema &ps = polymesh.getSchema(); in ProcessPolyMesh()
H A DREADME22 …elf. If the path points to a single "faceset" object directly beneath a polymesh or subdivision me…
/dports/cad/py-ezdxf/ezdxf-0.16.3/tests/test_07_render/
H A Dtest_703_render_mesh.py152 polymesh = msp.add_polymesh(size=(4, 4))
153 b = MeshBuilder.from_polyface(polymesh)
154 n = polymesh.dxf.n_count
155 m = polymesh.dxf.m_count
/dports/cad/py-ezdxf/ezdxf-0.16.3/examples/addons/
H A Dr12writer.py24 def polymesh(filename, size=(10, 10)): function
63 polymesh(DIR / "polymesh.dxf", size=(20, 10))
H A Dr12writer_big_files.py25 def polymesh(filename, size=(10, 10), heigth=1): function
63 polymesh(DIR / "polymesh.dxf", size=(256, 256), heigth=20)
/dports/graphics/alembic/alembic-1.8.3/houdini/SOP_AlembicIn/
H A DSOP_AlembicIn.C838 IPolyMesh polymesh( parent, ohead.getName() ); in walkObject()
839 IPolyMeshSchema &ps = polymesh.getSchema(); in walkObject()
847 nextParentObject = polymesh; in walkObject()
1778 void SOP_AlembicIn::buildPolyMesh( Args & args, IPolyMesh & polymesh, in buildPolyMesh() argument
1782 IPolyMeshSchema &schema = polymesh.getSchema(); in buildPolyMesh()
1797 std::string groupName = fixAttributeName(getFullName(polymesh)); in buildPolyMesh()
1815 std::string groupName = fixAttributeName(getFullName(polymesh)); in buildPolyMesh()
1830 std::string groupName = fixAttributeName(getFullName(polymesh)); in buildPolyMesh()
1840 addUVs(args, polymesh.getSchema().getUVsParam(), in buildPolyMesh()
1842 addNormals(args, polymesh.getSchema().getNormalsParam(), in buildPolyMesh()
[all …]
H A DSOP_AlembicIn.h143 …void buildPolyMesh( Args & args, IPolyMesh & polymesh, M44d parentXform, bool parentXformIsConstan…
/dports/cad/py-ezdxf/ezdxf-0.16.3/src/ezdxf/entities/
H A Dpolyline.py807 polymesh = cls.shallow_copy(polyline)
808 polymesh._sub_entities = polyline._sub_entities
809 polymesh.seqend = polyline.seqend
810 return polymesh
/dports/cad/py-ezdxf/ezdxf-0.16.3/src/ezdxf/
H A Dgraphicsfactory.py409 polymesh = self.new_entity('POLYLINE', dxfattribs) # type: Polymesh
412 polymesh.append_vertices(points) # init mesh vertices
413 polymesh.close(m_close, n_close)
415 polymesh.add_sub_entities_to_entitydb(self.doc.entitydb)
417 return polymesh
H A Dproxygraphic.py384 polymesh = cast('Polymesh',
386 polymesh.append_vertices(
388 return polymesh
/dports/graphics/alembic/alembic-1.8.3/houdini/SOP_AlembicIn/OPalembic/Object_1alembicarchive/
H A DPythonModule18 'polymesh',
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/visualization/include/pcl/visualization/
H A Dpcl_visualizer.h974 addPolygonMesh (const pcl::PolygonMesh &polymesh,
1007 updatePolygonMesh (const pcl::PolygonMesh &polymesh,
1016 addPolylineFromPolygonMesh (const pcl::PolygonMesh &polymesh,
1040 addTextureMesh (const pcl::TextureMesh &polymesh,
/dports/graphics/appleseed/appleseed-2.1.0-beta/sandbox/examples/cpp/alembicassembly/
H A Dalembicassembly.cpp549 const auto polymesh = AbcGeom::IPolyMesh(obj); in walk() local
551 const AbcGeom::IPolyMeshSchema& schema = polymesh.getSchema(); in walk()
/dports/cad/py-ezdxf/ezdxf-0.16.3/docs/source/dxfentities/
H A Dpolyline.rst278 A polymesh is a grid of :attr:`m_count` x :attr:`n_count` vertices, every vertex has its own
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/visualization/src/
H A Dpcl_visualizer.cpp3280 const pcl::PolygonMesh &polymesh, const std::string &id, int viewport) in addPolylineFromPolygonMesh() argument
3294 pcl::fromPCLPointCloud2 (polymesh.cloud, point_cloud); in addPolylineFromPolygonMesh()
3305 for (const auto &polygon : polymesh.polygons) in addPolylineFromPolygonMesh()

1234567