Ellipse 命令
- Ellipse( <Focus>, <Focus>, <Semimajor Axis Length> )
-
通过两个焦点和半长轴长度创建椭圆。
Ellipse((0, 1), (1, 1), 1)
生成
12x² + 16y² - 12x - 32y = -7
.
|
如果条件: 2*半长轴长度 > 焦点间距离 未满足,则会得到一条双曲线。 |
- Ellipse( <Focus>, <Focus>, <Segment> )
-
创建具有两个焦点的椭圆,其中半长轴的长度等于给定线段的长度。
设
s = Segment((0,1), (2,1))
:
Ellipse((0, 1), (2, 1), s)
生成
3x² + 4y² - 6x - 8y = 5
.
- Ellipse( <Focus>, <Focus>, <Point> )
-
创建经过给定点且具有两个焦点的椭圆。
Ellipse((0, 1), (2, 1), (1,2))
生成
1x² + 2y² - 2x - 4y = -1
.
|
另请参阅
|