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