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