-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSpc.MakeTriangle.Rd
More file actions
33 lines (32 loc) · 1023 Bytes
/
Spc.MakeTriangle.Rd
File metadata and controls
33 lines (32 loc) · 1023 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/triangle.R
\name{Spc.MakeTriangle}
\alias{Spc.MakeTriangle}
\title{Return an elementary triangle object}
\usage{
Spc.MakeTriangle(A, B, C, properties = NA)
}
\arguments{
\item{A, B, C}{A, B, and C define the corners of the triangle in space}
\item{properties}{Package-independent object defining additional triangle properties.
Default NA}
}
\value{
Elementary triangle object. The function neither checks that the
3 input points are not colinear, nor that any of the 3 points are equal.
Expect odd-ish results in either of those cases, since the resulting
object will we either a line or a point with zero area.
}
\description{
Return an elementary triangle object
}
\examples{
t <- Spc.MakeTriangle(c(0,0,0), c(1,1,1), c(2,0,10), surface_props)
}
\seealso{
Other constructors: \code{\link{Spc.Combine}},
\code{\link{Spc.MakeCuboid}},
\code{\link{Spc.MakePlane}},
\code{\link{Spc.MakePolygon}},
\code{\link{Spc.MakeSphere}}
}