lineSegment: Generate Objects of Class "'>lineSegment"
Description
This generic function has only one method
(lineSegment-methods) used as a constructor function for
objects that are of class "'>lineSegment". This
method should be used in preference to new to insure a
valid object.
Usage
lineSegment(length, orientation, ...)
Arguments
length
The length of the line segment in the appropriate units
(feet for "English" or meters for "metric").
orientation
The line orientation clockwise from north as an
azimuth in degrees.
# NOT RUN {# a one chain segment...ls = lineSegment(length=66, orientation=45, centerPoint=c(x=100, y=80), units='English')
summary(ls)
plot(ls, showLineCenter=TRUE, cex=2)
# }