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