R/write.obj.r

Defines functions write.obj

write.obj <- function(obj,filename="default")
{
    obj <- format(obj,scientific=FALSE,trim=TRUE, justify = "none")
    write.table(obj,file=paste(filename,".obj",sep=""),quote=F,row.names = FALSE,col.names = FALSE,na="")
}

Try the Morpho package in your browser

Any scripts or data that you put into this service are public.

Morpho documentation built on June 22, 2024, 7:19 p.m.