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