diff options
author | deepa-chaudhari | 2015-06-12 00:09:27 +0530 |
---|---|---|
committer | deepa-chaudhari | 2015-06-12 00:09:27 +0530 |
commit | 3a33538fa928154000843c6ebf6bc836ee2cafeb (patch) | |
tree | 046cc278878601c78e57ca49c5b25f87fc736376 /Connections/Shear/Finplate/colWebBeamWebConnectivity.py | |
parent | 493d0c5a008646a93bc94887d244d8cfad7b427f (diff) | |
download | OsdagLive-3a33538fa928154000843c6ebf6bc836ee2cafeb.tar.gz OsdagLive-3a33538fa928154000843c6ebf6bc836ee2cafeb.tar.bz2 OsdagLive-3a33538fa928154000843c6ebf6bc836ee2cafeb.zip |
implemented save cad file functionality
Diffstat (limited to 'Connections/Shear/Finplate/colWebBeamWebConnectivity.py')
-rw-r--r-- | Connections/Shear/Finplate/colWebBeamWebConnectivity.py | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Connections/Shear/Finplate/colWebBeamWebConnectivity.py b/Connections/Shear/Finplate/colWebBeamWebConnectivity.py index 7b45760..0617512 100644 --- a/Connections/Shear/Finplate/colWebBeamWebConnectivity.py +++ b/Connections/Shear/Finplate/colWebBeamWebConnectivity.py @@ -109,11 +109,15 @@ class ColWebBeamWeb(object): def get_models(self): '''Returning 3D models ''' - return [self.columnModel,self.beamModel, - self.weldModelLeft,self.weldModelRight, - self.plateModel]+ self.nutBoltArray.getnutboltModels() - + #+ self.nutBoltArray.getnutboltModels() + return [self.columnModel,self.plateModel, self.weldModelLeft,self.weldModelRight, + self.beamModel] + self.nutBoltArray.getModels() + + def get_nutboltmodels(self): + + return self.nutBoltArray.getModels() + #return self.nutBoltArray.getboltModels()
\ No newline at end of file |