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
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/mesh.hunif.R
\name{mesh.hunif}
\alias{mesh.hunif}
\title{Uniform desired edge length}
\usage{
mesh.hunif(p, ...)
}
\arguments{
\item{p}{A \code{n}-by-\code{m} matrix, each row representing a
point in an \code{m}-dimensional space.}
\item{...}{additional arguments (not used)}
}
\value{
Vector of ones of length \code{n}.
}
\description{
Uniform desired edge length function of position to allow easy
definition of regions when passed as the \code{fh} argument of
\code{\link{distmesh2d}} or \code{\link{distmeshnd}}.
}
\seealso{
\code{\link{distmesh2d}} and \code{\link{distmeshnd}}.
}
\author{
Raoul Grasman; translated from original Matlab sources of Per-Olof
Persson.
}
|