Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
plottools[cone] - 円錐体( cone )の 3D プロットオブジェクトを作成します
使い方
cone(c, ...)
cone(c, r, ...)
cone(c, r, h, ...)
パラメータ
c - 円錐の底面円の中心
r - 円錐の底面円の半径 (オプション、規定値は 1 )
h - 円錐の高さ (オプション、規定値は 1 )s
説明
ルーチン cone は、表示すると高さ h の円錐になる、3次元プロットオブジェクトを作成します。円錐の底面円は、中心が c で、半径が r です。
cone をコールすると、PLOT3D データ構造で使われるか、関数 plots[display] を使って表示できる、プロットデータオブジェクトを生成します。
残りの引数はオプションで、option = value の形の等式で指定します。これらのオプションは plot3d コマンドのものと同じです。詳しくは ?plot3d[options] をご覧ください。
コマンド with(plottools,cone) を使うと、このコマンドだけを定義できます。
例
with(plottools):
人工のコーンアイスクリームです
icecream := cone([0,0,-1],0.7,color=gold), sphere([0,0,0.1],0.6,color=brown): plots[display](icecream, scaling=constrained, style=patch);
参照:
plot3d[structure], plots[display]
Download Help Document