diff options
Diffstat (limited to 'Connections/Shear/Finplate/nutBoltPlacement.py')
-rw-r--r-- | Connections/Shear/Finplate/nutBoltPlacement.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Connections/Shear/Finplate/nutBoltPlacement.py b/Connections/Shear/Finplate/nutBoltPlacement.py index 627f9c9..5956037 100644 --- a/Connections/Shear/Finplate/nutBoltPlacement.py +++ b/Connections/Shear/Finplate/nutBoltPlacement.py @@ -54,9 +54,9 @@ class NutBoltArray(): for rw in range(self.row): for col in range(self.col): pos = self.origin - pos = pos + self.edge * self.gaugeDir + pos = pos + self.end * self.gaugeDir pos = pos + col * self.gauge * self.gaugeDir - pos = pos + self.end * self.pitchDir + pos = pos + self.edge * self.pitchDir pos = pos + rw * self.pitch * self.pitchDir self.positions.append(pos) |