mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-26 05:05:30 -04:00
Merge pull request #1724 from pshriwise/rp_fix
Typo fix in RectangularParallelepiped.__pos__ method.
This commit is contained in:
commit
2115cae40a
1 changed files with 1 additions and 1 deletions
|
|
@ -163,7 +163,7 @@ class RectangularParallelepiped(CompositeSurface):
|
|||
return +self.xmin & -self.xmax & +self.ymin & -self.ymax & +self.zmin & -self.zmax
|
||||
|
||||
def __pos__(self):
|
||||
return -self.xmin | +self.ymax | -self.ymin | +self.ymax | -self.zmin | +self.zmax
|
||||
return -self.xmin | +self.xmax | -self.ymin | +self.ymax | -self.zmin | +self.zmax
|
||||
|
||||
|
||||
class XConeOneSided(CompositeSurface):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue