Skip to content

Commit

Permalink
Update to Show OVal declaration for 2D and 3D objs.
Browse files Browse the repository at this point in the history
  • Loading branch information
colah committed Dec 4, 2012
1 parent 3258647 commit 5bc95d5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Graphics/Implicit/ExtOpenScad/Definitions.hs
Expand Up @@ -65,6 +65,8 @@ instance Show OVal where
show (OFunc f) = "<function>"
show (OModule _) = "module"
show (OError msgs) = "Execution Error:\n" ++ foldl1 (\a b -> a ++ "\n" ++ b) msgs
show (OObj2 obj) = "<obj2: " ++ show obj ++ ">"
show (OObj3 obj) = "<obj3: " ++ show obj ++ ">"

type VarLookup = Map String OVal
type FStack = [OVal]
Expand Down

0 comments on commit 5bc95d5

Please sign in to comment.