Example #1
0
 def resultantcollection(self):
     path = f"{self.assembly.name}::Resultants"
     if not self._resultantcollection:
         self._resultantcollection = compas_blender.create_collections_from_path(path)[1]
     return self._resultantcollection
Example #2
0
 def pathcollection(self):
     path = f"{self.network.name}::Paths"
     if not self._pathcollection:
         self._pathcollection = compas_blender.create_collections_from_path(
             path)[1]
     return self._pathcollection
Example #3
0
 def blockcollection(self):
     path = f"{self.assembly.name}::Blocks"
     if not self._blockcollection:
         self._blockcollection = compas_blender.create_collections_from_path(path)[1]
     return self._blockcollection
Example #4
0
 def interfacecollection(self):
     path = f"{self.assembly.name}::Interfaces"
     if not self._interfacecollection:
         self._interfacecollection = compas_blender.create_collections_from_path(path)[1]
     return self._interfacecollection
Example #5
0
 def vertexcollection(self):
     path = f"{self.mesh.name}::Vertices"
     if not self._vertexcollection:
         self._vertexcollection = compas_blender.create_collections_from_path(
             path)[1]
     return self._vertexcollection
Example #6
0
 def facecollection(self):
     path = f"{self.mesh.name}::Faces"
     if not self._facecollection:
         self._facecollection = compas_blender.create_collections_from_path(
             path)[1]
     return self._facecollection
Example #7
0
 def facecollection(self):
     if not self._facecollection:
         self._facecollection = compas_blender.create_collections_from_path(
             'Mesh::Faces')[1]
     return self._facecollection
Example #8
0
 def edgecollection(self):
     if not self._edgecollection:
         self._edgecollection = compas_blender.create_collections_from_path(
             'Mesh::Edges')[1]
     return self._edgecollection
Example #9
0
 def vertexcollection(self):
     if not self._vertexcollection:
         self._vertexcollection = compas_blender.create_collections_from_path(
             'Mesh::Vertices')[1]
     return self._vertexcollection
Example #10
0
 def pathcollection(self):
     if not self._pathcollection:
         self._pathcollection = compas_blender.create_collections_from_path(
             'Network::Paths')[1]
     return self._pathcollection
Example #11
0
 def nodecollection(self):
     if not self._nodecollection:
         self._nodecollection = compas_blender.create_collections_from_path(
             'Network::Nodes')[1]
     return self._nodecollection