Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

plstring3(3plplot) [debian man page]

PLSTRING3(3plplot)						    PLplot API							PLSTRING3(3plplot)

NAME
plstring3 - Plot a glyph at the specified 3D points SYNOPSIS
plstring3(n, x, y, z, string) DESCRIPTION
Plot a glyph at the specified 3D points. (Supersedes plpoin3(3plplot) because many[!] more glyphs are accessible with plstring3(3plplot).) Set up the call to this function similar to what is done for plline3(3plplot). The glyph is specified with a PLplot user string. Note that the user string is not actually limited to one glyph so it is possible (but not normally useful) to plot more than one glyph at the speci- fied points with this function. As with plmtex(3plplot) and plptex(3plplot), the user string can contain FCI escapes to determine the font, UTF-8 code to determine the glyph or else PLplot escapes for Hershey or unicode text to determine the glyph. Redacted form: plstring3(x, y, z, string) This function is used in example 18. ARGUMENTS
n (PLINT, input) Number of points in the x, y, and z arrays. x (PLFLT *, input) Pointer to an array with X coordinates of points. y (PLFLT *, input) Pointer to an array with Y coordinates of points. z (PLFLT *, input) Pointer to an array with Z coordinates of points. string (const char *, input) PLplot user string corresponding to the glyph to be plotted at each of the n points. AUTHORS
Geoffrey Furnish and Maurice LeBrun wrote and maintain PLplot. This man page was automatically generated from the DocBook source of the PLplot documentation, maintained by Alan W. Irwin and Rafael Laboissiere. SEE ALSO
PLplot documentation at http://plplot.sourceforge.net/resources. August, 2012 PLSTRING3(3plplot)

Check Out this Related Man Page

PLSTRANSFORM(3plplot)						    PLplot API						     PLSTRANSFORM(3plplot)

NAME
plstransform - Set a global coordinate transform function SYNOPSIS
plstransform(transform_fun, data) DESCRIPTION
This function can be used to define a coordinate transformation which affects all elements drawn within the current plot window. The transformation function is similar to that provided for the plmap(3plplot) and plmeridians(3plplot) functions. The data parameter may be used to pass extra data to transform_fun. Redacted form: General: plstransform(transform_fun, data) This function is used in example 19. ARGUMENTS
transform_fun (void (*) (PLFLT, PLFLT, PLFLT*, PLFLT*, PLPointer) , input) Pointer to a function that defines a transformation from the input (x, y) coordinate to a new plot world coordiante. data (PLPointer, input) Optional extra data for transform_fun. AUTHORS
Geoffrey Furnish and Maurice LeBrun wrote and maintain PLplot. This man page was automatically generated from the DocBook source of the PLplot documentation, maintained by Alan W. Irwin and Rafael Laboissiere. SEE ALSO
PLplot documentation at http://plplot.sourceforge.net/resources. August, 2012 PLSTRANSFORM(3plplot)
Man Page

4 More Discussions You Might Find Interesting

1. Programming

determining the IP of a function

Is there a way to determine the "Instruction Pointer" of a function in c++, and if so can someone tell me? (5 Replies)
Discussion started by: neur0n
5 Replies

2. Shell Programming and Scripting

Determination n points between two coordinates

Hi guys. Can anyone tell me how to determine points between two coardinates. For example: Which type of command line gives me 50 points between (8, -5, 7) and (2, 6, 9) points Thanks (5 Replies)
Discussion started by: rpf
5 Replies

3. Programming

PL/SQL Determine if the coordinates of a point is within four points

Dear all, Given that the coordinates of 4 points such as c1(x1,y1), c2(x2,y2), c3(x3,y3), c4(x4,y4). Does any body know how to use plain sql / plsql to determine coordinates of a point e.g. (x,y) is within 4 points above efficiently. The 4 points supposedly form a rectangle rectangular. ... (0 Replies)
Discussion started by: eldonlck
0 Replies

4. Homework & Coursework Questions

Function to Check if string input from user is alphabetic only

Good Evening. I'm new to C. Can you please help me. I'm creating an error checking function, user will input a string, this will check if the input is all alphabet or all letters only. If there is a digit or other special char, it will print Error then ask input from user again. Here's my... (1 Reply)
Discussion started by: eracav
1 Replies