Sponsored Content
Full Discussion: Returns points of an ellipse
Top Forums Shell Programming and Scripting Returns points of an ellipse Post 302786191 by saeed.soltani on Wednesday 27th of March 2013 04:49:05 AM
Old 03-27-2013
yes, it's a 3d ellipse and i want to draw it in a 2D plane. [in three 2D plane, XY,XZ,YZ]
 

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

mount points

sometimes in Solaris 8 when I go to mount filesystems using either the mount command or by editing the /etc/vfstab, i get a nice little error message saying the the number of allowable mount points has been exceeded. I have read man pages until I am blue in the face and no where can I find what the... (3 Replies)
Discussion started by: manderson19
3 Replies

2. UNIX for Dummies Questions & Answers

tar using mount points

hi i tried to tar a directory in my server but it show ensufficient space. therefore i tried to save it to a mount point using tar /mountpoint/newfilename file2btar but it gives me permission denied. i am using the root account to do this. is it possible to tar files and put it to mounted... (3 Replies)
Discussion started by: legato
3 Replies

3. UNIX and Linux Applications

Gnuplot question: how to plot 3D points as colored points in map view?

I have a simple gnuplot question. I have a set of points (list of x,y,z values; irregularly spaced, i.e. no grid) that I want to plot. I want the plot to look like this: - points in map view (no 3D view) - color of each point should depend on its z-value. - I want to define my own color scale -... (0 Replies)
Discussion started by: karman
0 Replies

4. Shell Programming and Scripting

How can I get entries between two points

Hi, I am trying to write a script to get entries between two points lets say start and end points from a log file, the log file time format is as follows Start - 07/Aug/2008:18:26:43 End - 07/Aug/2008:19:36:43 I tried using the following awk command but it couldnt pick up the entries... (3 Replies)
Discussion started by: openspark
3 Replies

5. UNIX for Advanced & Expert Users

mount points

hi, I believe a mount point does not have to be a physical disk, but rather a logical one? Is this correct? if so, how can I find out if my mount points are on different physical disks? thanks (9 Replies)
Discussion started by: JamesByars
9 Replies

6. Post Here to Contact Site Administrators and Moderators

Points?

Has any thought been given to assigning points to threads much in the way the HP ITRC forums do? This might not be possible, just a thought. (1 Reply)
Discussion started by: candlejack
1 Replies

7. Shell Programming and Scripting

Aggregated points

Combine points of specific key (a1) based on user defined size (lets say 200 in this example). so a1 191 and 191+200 and sum of all the values (4th column) and vice versa... Thanx a bunch! a1 191 201 1 a1 201 211 2 a1 211 221 1 a1 ....... .... a2......... ........ (7 Replies)
Discussion started by: quincyjones
7 Replies

8. Red Hat

Mount Points? How?

Hi folks, I have been asked to performed the following: Add the following new moint points systemA:/avp and SystemB:/usr/sap/trans to be the new linux server ZZZ How can I add those mount points and how those mount points can become another linuz server?:wall::wall::wall: (2 Replies)
Discussion started by: 300zxmuro
2 Replies

9. UNIX for Dummies Questions & Answers

Help with decimal points

Hi All, I would like to set decimal point to 16 in the following bash script but it has syntax error at }: awk '{printf"%.16e", (a<500,a++,$1/(a*1.1212121212121229e-02))}' input.dat >output.datHow may I set it in the correct way please? Thank you very much! (6 Replies)
Discussion started by: sxiong
6 Replies
QCanvasEllipse(3qt)													       QCanvasEllipse(3qt)

NAME
QCanvasEllipse - Ellipse or ellipse segment on a QCanvas SYNOPSIS
#include <qcanvas.h> Inherits QCanvasPolygonalItem. Public Members QCanvasEllipse ( QCanvas * canvas ) QCanvasEllipse ( int width, int height, QCanvas * canvas ) QCanvasEllipse ( int width, int height, int startangle, int angle, QCanvas * canvas ) ~QCanvasEllipse () int width () const int height () const void setSize ( int width, int height ) void setAngles ( int start, int length ) int angleStart () const int angleLength () const virtual int rtti () const Protected Members virtual void drawShape ( QPainter & p ) DESCRIPTION
The QCanvasEllipse class provides an ellipse or ellipse segment on a QCanvas. A canvas item that paints an ellipse or ellipse segment with a QBrush. The ellipse's height, width, start angle and angle length can be set at construction time. The size can be changed at runtime with setSize(), and the angles can be changed (if you're displaying an ellipse segment rather than a whole ellipse) with setAngles(). Note that angles are specified in 16ths of a degree. <center> [Image Omitted] </center> If a start angle and length angle are set then an ellipse segment will be drawn. The start angle is the angle that goes from zero in a counter-clockwise direction (shown in green in the diagram). The length angle is the angle from the start angle in a counter-clockwise direction (shown in blue in the diagram). The blue segment is the segment of the ellipse that would be drawn. If no start angle and length angle are specified the entire ellipse is drawn. The ellipse can be drawn on a painter with drawShape(). Like any other canvas item ellipses can be moved with move() and moveBy(), or by setting coordinates with setX(), setY() and setZ(). Note: QCanvasEllipse does not use the pen. See also Graphics Classes and Image Processing Classes. MEMBER FUNCTION DOCUMENTATION
QCanvasEllipse::QCanvasEllipse ( QCanvas * canvas ) Constructs a 32x32 ellipse, centered at (0, 0) on canvas. QCanvasEllipse::QCanvasEllipse ( int width, int height, QCanvas * canvas ) Constructs a width by height pixel ellipse, centered at (0,0) on canvas. QCanvasEllipse::QCanvasEllipse ( int width, int height, int startangle, int angle, QCanvas * canvas ) Constructs a width by height pixel ellipse, centered at (0,0) on canvas. Only a segment of the ellipse is drawn, starting at angle startangle, and extending for angle angle (the angle length). Note that angles are specified in <small><sup>1</sup>/<sub>16</sub></small>ths of a degree. QCanvasEllipse::~QCanvasEllipse () Destroys the ellipse. int QCanvasEllipse::angleLength () const Returns the length angle (the extent of the ellipse segment) in 16ths of a degree. Initially this will be 360 * 16 (a complete ellipse). See also setAngles() and angleStart(). int QCanvasEllipse::angleStart () const Returns the start angle in 16ths of a degree. Initially this will be 0. See also setAngles() and angleLength(). void QCanvasEllipse::drawShape ( QPainter & p ) [virtual protected] Draws the ellipse, centered at x(), y() using the painter p. Note that QCanvasEllipse does not support an outline (pen is always NoPen). Reimplemented from QCanvasPolygonalItem. int QCanvasEllipse::height () const Returns the height of the ellipse. int QCanvasEllipse::rtti () const [virtual] Returns 6 (QCanvasItem::Rtti_Ellipse). See also QCanvasItem::rtti(). Reimplemented from QCanvasPolygonalItem. void QCanvasEllipse::setAngles ( int start, int length ) Sets the angles for the ellipse. The start angle is start and the extent of the segment is length (the angle length) from the start. The angles are specified in 16ths of a degree. By default the ellipse will start at 0 and have an angle length of 360 * 16 (a complete ellipse). See also angleStart() and angleLength(). void QCanvasEllipse::setSize ( int width, int height ) Sets the width and height of the ellipse. int QCanvasEllipse::width () const Returns the width of the ellipse. SEE ALSO
http://doc.trolltech.com/qcanvasellipse.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2001 Trolltech AS, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qcanvasellipse.3qt) and the Qt version (3.1.1). Trolltech AS 9 December 2002 QCanvasEllipse(3qt)
All times are GMT -4. The time now is 04:49 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy