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[arrow] - generate 2-D or 3-D plot object for an arrow
Calling Sequence
arrow(base, dir, wb, wh, hh, sh, fr, options)
arrow(base, dir, pv, wb, wh, hh, sh, fr, options)
Parameters
base
-
base of the arrow, given as 2-D (or 3-D) point or 2-D (or 3-D) Vector
dir
2-D (or 3-D) point or 2-D (or 3-D) direction Vector
pv
vector indicating the plane containing the arrow
wb
width of the body of the arrow
wh
width of the head of the arrow
hh
height of the head of the arrow as a ratio of the length of the body
sh
(optional) shape of the arrow, either harpoon, arrow, double_arrow, or cylindrical_arrow
fr
(optional) add a "fringe" to the arrowhead, only works if shape of the arrow is cylindrical_arrow
options
(optional) equations of the form option=value. For a complete list, see plot/options and plot3d/option.
Description
The arrow command creates plot data objects, which when displayed create an arrow whose base is located at base.
Note: Multiple plot data objects may be generated, so if the result is intended to be part of animation, it may be necessary to enclose these in a PLOT or PLOT3D function.
If dir is a point (a list of two or three real numbers), the arrow is drawn from the point base to the point dir.
If dir is a Vector (a Vector of dimension two or three), the output is the specified vector dir with the tail at the point base.
In the 3-D case, the plane vector is used to specify the plane in which the vector lies. It lies in the plane containing the arrow and cross product of the arrow and pv. If the direction of the arrow and the plane vector are collinear, the argument pv is ignored.
The wb parameter indicates the width of the body of the arrow
The wh parameter indicates the width of the head of the arrow
The hh parameter is the ratio of the height of the head of the arrow to the length of the body of the arrow.
The optional argument sh indicates how the arrow should be drawn, either harpoon or arrow for a one-dimensional arrow, double_arrow for a two-dimensional arrow, or cylindrical_arrow for a three-dimensional arrow.
The option argument fr adds a fringe to the arrowhead. It is available only for cylindrical_arrow. The inputs must be in the form fringe = color where color can be red, green, blue, black, or white. Alternatively, it can be put in the form where a, b, and c are floats between 0.0 and 1.0.
A call to arrow produces a plot data object that can be used in a PLOT or PLOT3D data structure, or displayed using the plots[display] command.
The remaining arguments are interpreted as options, which are specified as equations of the form option = value. For more information, see plottools, plot/options and plot3d/option.
In some cases, the result is an expression sequence of plot objects, and therefore in order to group these objects, place a PLOT or PLOT3D command around the result.
Examples
See Also
plot/options, plot/structure, plot3d/option, plots[arrow], plots[display], plottools
Download Help Document