{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
module THREE.ImageUtils
(
ImageUtils (..)
, THREE.ImageUtils.new
) where
import Miso
import qualified THREE.Internal as THREE
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)
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])