-----------------------------------------------------------------------------
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
-----------------------------------------------------------------------------
module THREE.WireframeGeometry
  ( -- * Types
    WireframeGeometry (..)
    -- * Methods
  , THREE.WireframeGeometry.new
    -- * Properties
  ) where
-----------------------------------------------------------------------------
import           Miso
-----------------------------------------------------------------------------
import qualified THREE.Internal as THREE
-----------------------------------------------------------------------------
-- | https://threejs.org/docs/#api/en/scenes/WireframeGeometry
newtype WireframeGeometry
  = WireframeGeometry
  { WireframeGeometry -> JSVal
unWireframeGeometryCamera :: JSVal
  } deriving (WireframeGeometry -> IO Object
(WireframeGeometry -> IO Object) -> ToObject WireframeGeometry
forall a. (a -> IO Object) -> ToObject a
$ctoObject :: WireframeGeometry -> IO Object
toObject :: WireframeGeometry -> IO Object
ToObject)
-----------------------------------------------------------------------------
-- | https://threejs.org/docs/#api/en/cameras/WireframeGeometry
new :: THREE.Three WireframeGeometry
new :: Three WireframeGeometry
new = (JSVal -> WireframeGeometry)
-> MisoString -> [MisoString] -> Three WireframeGeometry
forall args con.
ToArgs args =>
(JSVal -> con) -> MisoString -> args -> Three con
THREE.new JSVal -> WireframeGeometry
WireframeGeometry MisoString
"WireframeGeometry" ([] :: [MisoString])
-----------------------------------------------------------------------------