2.7 投影

本文介绍了如何使用Maple的project命令将空间图形,如曲面、立体和空间曲线,投影到特定平面上。通过一系列示例展示了不同投影操作,包括曲面到xOy坐标面、平面y=-3、x=-3以及多个平面的投影,还涉及到了曲线的投影,如圆柱螺线。投影图形可以帮助我们从不同角度理解复杂的空间形状。
摘要由CSDN通过智能技术生成

Maple可以用投影命令 project 将空间图形(曲面、立体、空间曲线)投影到指定的平面上。
投影的基本命令是:

project(P, [A, B, C])

它将图形P投影到三点 A, B, C 所确定的平面上。

例 2.7.1 将以下曲面投影到xOy坐标面。在这里插入图片描述
这是一个旋转抛物面。

输入以下命令:

with(plots):with(plottools):
qumian:=plot3d([u* sin(theta), u* cos(theta), u^2+1], u=-.5…1.5, theta=0…2*Pi, style=patch):
A:=[0,0,0]: B:=[1,0,0]: C:=[0,1,0]:
touying:=project(qumian, [A, B, C]):
display(qumian, touying, orientation=[40,70], lightmodel=light2,axes=boxed);在这里插入图片描述

输出图形(投影为圆域):

在这里插入图片描述

例 2.7.2 将以下曲面投影到平面y=-3。
在这里插入图片描述
这是一个旋转抛物面。

输入以下命令:

with(plots): with(plottools):
qumian:=plot3d([usin(theta), ucos(theta), u^2+1], u=-.5…1.5, theta=0…2*Pi, style=patch):
A:=[1,-3,0]: B:=[0,-3,0]: C:=[0,-3,1]:
touying:=project(qumian, [A, B, C]):
display(qumian, touying, orientation=[40,70], lightmodel=light2,
axes=boxed, scaling=constrained);在这里插入图片描述

输出图形:在这里插入图片描述

例 2.7.3 将以下曲面投影到平面 x=-3。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值