{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
module THREE.MathUtils
(
MathUtils (..)
, THREE.MathUtils.new
) where
import Miso
import qualified THREE.Internal as THREE
newtype MathUtils
= MathUtils
{ MathUtils -> JSVal
unMathUtilsCamera :: JSVal
} deriving (MathUtils -> IO Object
(MathUtils -> IO Object) -> ToObject MathUtils
forall a. (a -> IO Object) -> ToObject a
$ctoObject :: MathUtils -> IO Object
toObject :: MathUtils -> IO Object
ToObject)
new :: THREE.Three MathUtils
new :: Three MathUtils
new = (JSVal -> MathUtils)
-> MisoString -> [MisoString] -> Three MathUtils
forall args con.
ToArgs args =>
(JSVal -> con) -> MisoString -> args -> Three con
THREE.new JSVal -> MathUtils
MathUtils MisoString
"MathUtils" ([] :: [MisoString])