-----------------------------------------------------------------------------
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
-----------------------------------------------------------------------------
module THREE.ShapeUtils
  ( -- * Types
    ShapeUtils (..)
    -- * Methods
  , THREE.ShapeUtils.new
    -- * Properties
  ) where
-----------------------------------------------------------------------------
import           Miso
-----------------------------------------------------------------------------
import qualified THREE.Internal as THREE
-----------------------------------------------------------------------------
-- | https://threejs.org/docs/#api/en/scenes/ShapeUtils
newtype ShapeUtils
  = ShapeUtils
  { ShapeUtils -> JSVal
unShapeUtilsCamera :: JSVal
  } deriving (ShapeUtils -> IO Object
(ShapeUtils -> IO Object) -> ToObject ShapeUtils
forall a. (a -> IO Object) -> ToObject a
$ctoObject :: ShapeUtils -> IO Object
toObject :: ShapeUtils -> IO Object
ToObject)
-----------------------------------------------------------------------------
-- | https://threejs.org/docs/#api/en/cameras/ShapeUtils
new :: THREE.Three ShapeUtils
new :: Three ShapeUtils
new = (JSVal -> ShapeUtils)
-> MisoString -> [MisoString] -> Three ShapeUtils
forall args con.
ToArgs args =>
(JSVal -> con) -> MisoString -> args -> Three con
THREE.new JSVal -> ShapeUtils
ShapeUtils MisoString
"ShapeUtils" ([] :: [MisoString])
-----------------------------------------------------------------------------