spatstat (version 1.36-0)

affine.linnet: Apply Geometrical Transformations to a Linear Network

Description

Apply geometrical transformations to a linear network.

Usage

## S3 method for class 'linnet':
affine(X, mat=diag(c(1,1)), vec=c(0,0), ...)

## S3 method for class 'linnet': shift(X, \dots)

## S3 method for class 'linnet': rotate(X, angle=pi/2, \dots)

## S3 method for class 'linnet': scalardilate(X, f, \dots)

## S3 method for class 'linnet': rescale(X, s)

Arguments

X
Linear network (object of class "linnet").
mat
Matrix representing a linear transformation.
vec
Vector of length 2 representing a translation.
angle
Rotation angle in radians.
f
Scalar dilation factor.
s
Unit conversion factor: the new units are s times the old units.
...
Arguments passed to other methods.

Value

  • Another linear network (of class "linnet") representing the result of applying the geometrical transformation.

Details

These functions are methods for the generic functions affine, shift, rotate, rescale and scalardilate applicable to objects of class "linnet".

All of these functions perform geometrical transformations on the object X, except for rescale, which simply rescales the units of length.

See Also

linnet and as.linnet. Generic functions affine, shift, rotate, scalardilate, rescale.

Examples

Run this code
U <- rotate(simplenet, pi)
  stretch <- diag(c(2,3))
  Y <- affine(simplenet, mat=stretch)
  shear <- matrix(c(1,0,0.6,1),ncol=2, nrow=2)
  Z <- affine(simplenet, mat=shear, vec=c(0, 1))

Run the code above in your browser using DataCamp Workspace