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