Learn R Programming

x3ptools (version 0.0.4)

x3p_flip_x: Flip the x coordinate of an x3p file

Description

Flip the surface matrix of an x3p file along the x axis.

Usage

x3p_flip_x(x3p)

x_flip_x3p(x3p)

Value

x3p object in which the x coordinate is reversed.

Arguments

x3p

x3p object

Examples

Run this code
logo <- x3p_read(system.file("csafe-logo.x3p", package="x3ptools"))
dim(logo$surface.matrix)
if (FALSE) {
x3p_image(logo)
}
# flip the y-axis for the old ISO standard:
logoflip <- x3p_flip_x(logo)
dim(logoflip$surface.matrix)
if (FALSE) {
x3p_image(logoflip)
}

Run the code above in your browser using DataLab