Learn R Programming

retistruct (version 0.8.0)

StitchedOutline: Class containing functions and data relating to Stitching outlines

Description

A StitchedOutline contains a function to stitch the tears and fullcuts, setting the correspondences hf, hb and h

Arguments

Author

David Sterratt

Super classes

retistruct::OutlineCommon -> retistruct::Outline -> retistruct::PathOutline -> retistruct::AnnotatedOutline -> retistruct::TriangulatedOutline -> StitchedOutline

Public fields

Rset

the set of points on the rim

TFset

list containing indices of points in each forward tear

CFset

list containing indices of points in each forward cut

epsilon

the minimum distance between points, set automatically

tearsStitched

Boolean indicating if tears have been stitched

fullCutsStitched

Boolean indicating if full cuts have been stitched

Methods

Inherited methods


Method new()

Constructor

Usage

StitchedOutline$new(...)

Arguments

...

Parameters to superclass constructors


Method stitchTears()

Stitch together the incisions and tears by inserting new points in the tears and creating correspondences between new points.

Usage

StitchedOutline$stitchTears()


Method stitchFullCuts()

Stitch together the fullcuts by inserting new points in the tears and creating correspondences between new points.

Usage

StitchedOutline$stitchFullCuts()


Method isStitched()

Test if the outline has been stitched

Usage

StitchedOutline$isStitched()

Returns

Boolean, indicating if the outline has been stitched or not


Method getBoundarySets()

Get point IDs of points on boundaries

Usage

StitchedOutline$getBoundarySets()

Returns

List of Point IDs of points on the boundaries. If the outline has been stitched, the point IDs in each element of the list will be ordered in the direction of the forward pointer, and the boundary that is longest will be named as Rim. If the outline has not been stitched, the list will have one element named Rim.


Method clone()

The objects of this class are cloneable with this method.

Usage

StitchedOutline$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.