MobiusMappingCircle | R Documentation |
Returns a Möbius transformation mapping a given circle to another given circle.
MobiusMappingCircle(circ1, circ2)
circ1, circ2 |
|
A Möbius transformation which maps circ1
to circ2
.
library(PlaneGeometry)
C1 <- Circle$new(c(0, 0), 1)
C2 <- Circle$new(c(1, 2), 3)
M <- MobiusMappingCircle(C1, C2)
C3 <- M$transformCircle(C1)
C3$isEqual(C2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.