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