Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
plots[textplot3d] - テキスト文字列をプロットします
使い方
textplot3d( L, options);
パラメータ
L - リストまたは集合
... - オプション引数 (下を参照)
説明
この関数を使うと、3 次元空間にテキストをプロットすることができます。2 次元へのテキストプロットについては、plots[textplot] をご覧ください。textplot3d への入力 L は、1 つのテキストポイント または テキストポイントのリストか集合です。ここで 1 つのテキストポイントは、4 つの要素からなります。最後の要素はテキストで、テキストポイントのはじめの要素でしていされる座標に置かれます。
規定の整列法は、上下、左右ともに中央寄せです。オプション align = t を使い、この整列法を設定できます。ここで t は BELOW, RIGHT, ABOVE, LEFT または これらの集合です。textplot のその他のオプションは plot3d のオプションと同じです。plot3d[options] をご覧ください。
textplot3d は with(plots) または with(plots,textplot3d) で定義できます。また、plots[textplot3d] を使うと、定義せずにそのまま使えます。
例
with(plots): textplot3d([1,2,3,`one point in 3d`],align = LEFT); textplot3d({[1,2,3,`one point in 3d`],[3,2,1,`second point in 3d`]}); textplot3d([[1,2,3,`first point in 3d`],[3,2,1,`second point in 3d`]]); textplot3d([[1,2,3,`first point in 3d`],[3,2,1,`second point in 3d`]],color=green);
参照
plot3d, plots[textplot]
Download Help Document