Learn R Programming

hexify (version 0.3.10)

hexify_set_precision: Set inverse projection precision

Description

Controls the accuracy/speed tradeoff for inverse Snyder projection.

Usage

hexify_set_precision(
  mode = c("fast", "default", "high", "ultra"),
  tol = NULL,
  max_iters = NULL
)

Value

Invisible NULL

Arguments

mode

Preset mode: "fast", "default", "high", or "ultra"

tol

Custom tolerance (overrides mode if provided)

max_iters

Custom max iterations (overrides mode if provided)

See Also

Other projection: hexify_build_icosa(), hexify_face_centers(), hexify_forward(), hexify_forward_to_face(), hexify_get_precision(), hexify_inverse(), hexify_projection_stats(), hexify_set_verbose(), hexify_which_face()

Examples

Run this code
hexify_set_precision("high")
hexify_set_precision(tol = 1e-12, max_iters = 100)

Run the code above in your browser using DataLab