write_scene_to_obj: Write the scene to an OBJ file

View source: R/write_scene_to_obj.R

write_scene_to_objR Documentation

Write the scene to an OBJ file

Description

Writes the current scene to a Wavefront OBJ file, with or without materials

Usage

write_scene_to_obj(scene, filename, materials = TRUE, fileext = ".obj")

Arguments

scene

A rayvertex scene.

filename

The filename for the OBJ file.

materials

Default 'TRUE'. Whether to write an MTL file to specify the materials for the OBJ.

fileext

Default '".obj"'. The file extension to add to the filename.

Value

None

Examples

if(rayvertex:::run_documentation()) {
tmpfile = tempfile(fileext = ".obj")
write_scene_to_obj(generate_cornell_mesh(), tmpfile)
}

rayvertex documentation built on July 9, 2023, 5:52 p.m.