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