Circle from Two Points
Creates a circle with centre P1 and radius equal to the distance from P1 to P2. No selector needed — the result is uniquely determined by the two points.
What It Does
The Circle/From,P1,P2 operator creates a circle where:
- Centre = P1 (the first point)
- Radius = dist(P1, P2) — the distance from P1 to P2
This is equivalent to Circle/Centre,P1,R where R is computed automatically from the distance between the two points. It is useful when you know the centre and a point on the circumference, but not the explicit radius value.
Syntax
| Parameter | Description | Required |
|---|---|---|
P1 | Centre point reference | ✓ Yes |
P2 | Point on the circumference — defines the radius | ✓ Yes |
Quick Input
Worked Examples
Analytic Rule
FAQ
What is the difference between Circle/From,P1,P2 and Circle/Centre,R?
Circle/Centre,R requires you to specify the radius as an explicit numeric value. Circle/From,P1,P2 computes the radius automatically from the distance between the two points — useful when you know a point on the circumference but not the exact radius.
Does P2 have to be on the circumference?
Yes. P2 defines the radius — it is the point on the circumference. The circle passes through P2 exactly.