All aframe primitives.

a_primitive(primitive, opts = list())

a_entity(...)

a_box(...)

a_camera(...)

a_circle(...)

a_collada_model(...)

a_cone(...)

a_cursor(...)

a_curvedimage(...)

a_event(...)

a_cylinder(...)

a_gltf_model(...)

a_icosahedron(...)

a_image(...)

a_light(...)

a_link(...)

a_obj_model(...)

a_octahedron(...)

a_plane(...)

a_ring(...)

a_ring(...)

a_sky(...)

a_sound(...)

a_sphere(...)

a_tetrahedron(...)

a_text(...)

a_torus_knot(...)

a_torus(...)

a_triangle(...)

a_video(...)

a_videosphere(...)

Arguments

primitive

The primitive, excluding a-.

opts

A list of options.

...

Any aframe element or named options.

See also

Examples

x <- a_primitive("box", list(color = "red")) y <- a_box(color = "red") identical(x, y)
#> [1] TRUE
embed_aframe( a_scene( a_dep(), a_box( position = "-1 0.5 -3", rotation = "0 45 0", color = "#4CC3D9" ) ) )
#> <div> #> <a-scene style="width:100%;height:400px;" embedded> #> <a-box position="-1 0.5 -3" rotation="0 45 0" color="#4CC3D9"></a-box> #> </a-scene> #> </div>