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