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