Home
last modified time | relevance | path

Searched refs:addVertices (Results 1 – 25 of 118) sorted by relevance

12345

/dports/games/trenchbroom/TrenchBroom-ed46601/common/src/Renderer/
H A DVertexListBuilder.h77 return addVertices(vertices); in addPoints()
92 return addVertices(vertices); in addLines()
97 return addVertices(vertices); in addLineStrip()
102 return addVertices(vertices); in addLineLoop()
118 return addVertices(vertices); in addTriangles()
123 return addVertices(vertices); in addTriangleFan()
128 return addVertices(vertices); in addTriangleStrip()
145 return addVertices(vertices); in addQuads()
151 return addVertices(vertices); in addQuadStrip()
156 return addVertices(vertices); in addPolygon()
[all …]
H A DIndexedVertexList.h69 void addVertices(const typename T::Vertex::List& vertices) { in addVertices() function
75 addVertices(vertices); in addPrimitive()
/dports/biology/gatk/gatk-4.2.0.0/src/test/java/org/broadinstitute/hellbender/tools/walkers/haplotypecaller/graphs/
H A DSeqGraphUnitTest.java167 graph.addVertices(pre1); in makeMergingData()
172 graph.addVertices(top); in makeMergingData()
182 graph.addVertices(middle1); in makeMergingData()
192 graph.addVertices(middle2); in makeMergingData()
204 graph.addVertices(bottom); in makeMergingData()
217 graph.addVertices(middle3); in makeMergingData()
330 graph.addVertices(a1, c1); in makeLinearZipData()
331 expected.addVertices(a1, c1); in makeLinearZipData()
337 expected.addVertices(ac1); in makeLinearZipData()
342 graph.addVertices(g1); in makeLinearZipData()
[all …]
H A DChainPrunerUnitTest.java39 graph.addVertices(v1, v2, v3); in makePruneChainsData()
48 graph.addVertices(v1, v2, v3); in makePruneChainsData()
49 graph.addVertices(v4, v5); in makePruneChainsData()
57 graph.addVertices(v1, v2, v3, v4); in makePruneChainsData()
65 graph.addVertices(v1, v2, v3, v4); in makePruneChainsData()
73 graph.addVertices(v1, v2, v3, v4, v5, v6); in makePruneChainsData()
81 graph.addVertices(v1, v2, v3, v4, v5); in makePruneChainsData()
90 graph.addVertices(v1, v2, v3, v4, v5, v6); in makePruneChainsData()
100 graph.addVertices(v1, v2, v3, v4, v5); in makePruneChainsData()
212 graph.addVertices(E);
[all …]
H A DCommonSuffixSplitterUnitTest.java43 original.addVertices(v1, v2, v3, v4); in testSplitPrevHaveMultipleEdges()
62 original.addVertices(v1, v2, v3, v4); in testSplitNoCycles()
82 original.addVertices(r1, r2, cat1, cat2, c1, c2); in testSplitComplexCycle()
104 original.addVertices(v1, v2, v3, v4); in testSplitInfiniteCycleFailure()
H A DBaseGraphUnitTest.java25 graph.addVertices(v1, v2, v3, v4, v5); in setUp()
78 graph.addVertices(rm1, rm2); in testRemoveSingletonOrphanVertices()
113 g.addVertices(v2, v3, v4, v5); in testIsRefSourceAndSink()
190 graph.addVertices(src, end, g1, g2, g3, g4, g5, g6, g7, g8); in testRemovePathsNotConnectedToRef()
200 graph.addVertices(b1, b2, b3, b4, b5, b6, b7, b8, b9); in testRemovePathsNotConnectedToRef()
245 …graph.addVertices(src, end, g1, g2, g3, g4, g5, g6, g7, g8, gPrev, gPrev1, gPrev2, gAfter, gAfter1… in testRemoveVerticesNotConnectedToRefRegardlessOfEdgeDirection()
261 graph.addVertices(b1, b2, b3, b4, b5, b6); in testRemoveVerticesNotConnectedToRefRegardlessOfEdgeDirection()
H A DSharedVertexSequenceSplitterUnitTest.java91 graph.addVertices(v.toArray(new SeqVertex[v.size()])); in testSplitter()
169 graph.addVertices(v.toArray(new SeqVertex[v.size()])); in testSplitterCompleteCycle()
261 graph.addVertices(v.toArray(new SeqVertex[v.size()])); in testSplitterCompleteCycle()
262 graph.addVertices(top, bot); in testSplitterCompleteCycle()
H A DCommonSuffixMergerUnitTest.java68 graph.addVertices(tops); in makeSplitMergeData()
130 g.addVertices(top, v1, v2, v3, top, b); in testDoesntMergeSourceNodes()
/dports/cad/ldview/ldview-4.4/TRE/
H A DTREVertexStore.h23 virtual int addVertices(const TCVector *points, int count, int step,
25 virtual int addVertices(const TCVector *points, const TCVector *normals,
27 virtual int addVertices(const TCVector *points, const TCVector *normals,
29 virtual int addVertices(TCULong color, const TCVector *points, int count,
31 virtual int addVertices(TCULong color, const TCVector *points,
33 virtual int addVertices(TCULong color, const TCVector *points,
80 virtual int addVertices(TREVertexArray *vertices, const TCVector *points,
H A DTREVertexStore.cpp121 int TREVertexStore::addVertices( in addVertices() function in TREVertexStore
154 int TREVertexStore::addVertices( in addVertices() function in TREVertexStore
160 addVertices(m_normals, normals, count, step); in addVertices()
164 int TREVertexStore::addVertices( in addVertices() function in TREVertexStore
172 return addVertices(points, normals, count, step); in addVertices()
175 int TREVertexStore::addVertices( in addVertices() function in TREVertexStore
188 return addVertices(points, count, step, edgeFlag); in addVertices()
191 int TREVertexStore::addVertices( in addVertices() function in TREVertexStore
204 return addVertices(points, normals, count, step); in addVertices()
207 int TREVertexStore::addVertices( in addVertices() function in TREVertexStore
[all …]
H A DTREColoredShapeGroup.cpp67 index = m_vertexStore->addVertices(htonl(color), vertices, normals, in addShape()
72 index = m_vertexStore->addVertices(htonl(color), vertices, normals, in addShape()
78 index = m_vertexStore->addVertices(htonl(color), vertices, count, in addShape()
111 index = m_vertexStore->addVertices(color, controlPoints, 2, in addConditionalLine()
117 index = m_vertexStore->addVertices(color, vertices, 1, in addConditionalLine()
122 m_vertexStore->addVertices(color, vertices, 1, in addConditionalLine()
124 index = m_vertexStore->addVertices(color, &vertices[1], 1, in addConditionalLine()
127 index = m_vertexStore->addVertices(color, &vertices[1], 1, in addConditionalLine()
132 index = m_vertexStore->addVertices(color, vertices, 2, in addConditionalLine()
188 index = m_vertexStore->addVertices(htonl(color), vertices, normals, count, in addStrip()
H A DTREShapeGroup.cpp908 index = m_vertexStore->addVertices(vertices, normals, count, in addShape()
916 index = m_vertexStore->addVertices(vertices, NULL, textureCoords, in addShape()
921 index = m_vertexStore->addVertices(vertices, count, in addShape()
946 index = m_vertexStore->addVertices(controlPoints, 2, in addConditionalLine()
952 index = m_vertexStore->addVertices(vertices, 1, in addConditionalLine()
957 m_vertexStore->addVertices(vertices, 1, in addConditionalLine()
959 index = m_vertexStore->addVertices(&vertices[1], 1, in addConditionalLine()
962 index = m_vertexStore->addVertices(&vertices[1], 1, in addConditionalLine()
967 index = m_vertexStore->addVertices(vertices, 2, in addConditionalLine()
1070 index = m_vertexStore->addVertices(vertices, normals, textureCoords, in addStrip()
[all …]
/dports/science/py-avogadrolibs/avogadrolibs-1.94.0/avogadro/rendering/
H A Dmeshgeometry.h90 unsigned int addVertices(const Core::Array<Vector3f>& vertices,
93 unsigned int addVertices(const Core::Array<Vector3f>& vertices,
96 unsigned int addVertices(const Core::Array<Vector3f>& vertices,
H A Dmeshgeometry.cpp186 unsigned int MeshGeometry::addVertices(const Core::Array<Vector3f>& v, in addVertices() function in Avogadro::Rendering::MeshGeometry
208 unsigned int MeshGeometry::addVertices(const Core::Array<Vector3f>& v, in addVertices() function in Avogadro::Rendering::MeshGeometry
233 unsigned int MeshGeometry::addVertices(const Core::Array<Vector3f>& v, in addVertices() function in Avogadro::Rendering::MeshGeometry
/dports/science/avogadrolibs/avogadrolibs-1.94.0/avogadro/rendering/
H A Dmeshgeometry.h90 unsigned int addVertices(const Core::Array<Vector3f>& vertices,
93 unsigned int addVertices(const Core::Array<Vector3f>& vertices,
96 unsigned int addVertices(const Core::Array<Vector3f>& vertices,
H A Dmeshgeometry.cpp186 unsigned int MeshGeometry::addVertices(const Core::Array<Vector3f>& v, in addVertices() function in Avogadro::Rendering::MeshGeometry
208 unsigned int MeshGeometry::addVertices(const Core::Array<Vector3f>& v, in addVertices() function in Avogadro::Rendering::MeshGeometry
233 unsigned int MeshGeometry::addVertices(const Core::Array<Vector3f>& v, in addVertices() function in Avogadro::Rendering::MeshGeometry
/dports/math/py-apgl/apgl-0.8.1/apgl/graph/test/
H A DCsArrayGraphTest.py38 graph.addVertices(5)
45 graph.addVertices(5)
/dports/math/curv/curv-0.5/libcurv/viewer/
H A Dmesh.h24 void addVertices(const std::vector<glm::vec3>& _verts);
25 void addVertices(const glm::vec3* _verts, int _amt);
H A Dmesh.cc49 void Mesh::addVertices(const std::vector<glm::vec3>& _verts){ in addVertices() function in Mesh
53 void Mesh::addVertices(const glm::vec3* verts, int amt){ in addVertices() function in Mesh
101 addVertices(_mesh.getVertices()); in add()
281 tmpMesh->addVertices((GLbyte*)data.data(), m_vertices.size()); in getVbo()
H A Dvbo.cc48 addVertices(_vertex, 1); in addVertex()
51 void Vbo::addVertices(GLbyte* _vertices, int _nVertices) { in addVertices() function in Vbo
/dports/science/py-avogadrolibs/avogadrolibs-1.94.0/avogadro/qtplugins/meshes/
H A Dmeshes.cpp75 mesh1->addVertices(mesh->vertices(), mesh->normals()); in process()
93 mesh2->addVertices(mesh->vertices(), mesh->normals()); in process()
/dports/science/avogadrolibs/avogadrolibs-1.94.0/avogadro/qtplugins/meshes/
H A Dmeshes.cpp75 mesh1->addVertices(mesh->vertices(), mesh->normals()); in process()
93 mesh2->addVertices(mesh->vertices(), mesh->normals()); in process()
/dports/games/fs2open/fs2open.github.com-release_21_4_1/code/graphics/paths/
H A DNanoVGRenderer.h100 size_t addVertices(const NVGvertex* vert, size_t num);
102 size_t addVertices(size_t num);
/dports/cad/uranium/Uranium-3ed9c4de/tests/Mesh/
H A DTestMeshBuilder.py177 builder.addVertices(numpy.zeros(3))
180 builder.addVertices(numpy.zeros(3))
/dports/biology/abyss/abyss-2.3.1/Graph/
H A DDotIO.h179 bool addVertices = num_vertices(g) == 0; in read_dot() local
222 if (addVertices) { in read_dot()
235 if (addVertices) { in read_dot()

12345