Graphic application


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Graphic application
# 1  
Old 05-04-2009
Graphic application

Hi,
do you know any Open source software , equivalent to Lightroom 1.1 of Adob ?

Thanks.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Gnuplot multiset graphic

Hello everyone, im trying to create a special graphic with gnuplot and dont really get where i want. What i want to do is this: I have 20 textfiles containing 8000x2 matrices, where the first column represents the time and the second the amplitude of a wave. Now all 20 wave-functions shell... (0 Replies)
Discussion started by: Robin451987
0 Replies

2. Red Hat

Graphic mode Linux RH 3

Installing Linux Enterprise Red Hat 3, does not appear graphic mode even changing inittab to 5. Please help me to get the instructions to install graphic mode (gnome?) in my recent installation. Thanks! (3 Replies)
Discussion started by: osymad
3 Replies

3. UNIX Desktop Questions & Answers

Graphic display resolution

Hello all, I need to fix some resolution in an AIX, how can I do it? It cannot be altered at system reboot, in the other words, I'm setting an display resolution, but when I do a reboot this configuration will be losted. I need somethig like this: Set a configuration and it cannot be changed... (0 Replies)
Discussion started by: nando_zambone
0 Replies

4. Solaris

How to know my graphic card type

Dear experts I need to know how can I check the type of graphic card and it specifications already installed on my Solaris 8 Ultra 60 workstation. Regards reza (5 Replies)
Discussion started by: Reza Nazarian
5 Replies

5. Post Here to Contact Site Administrators and Moderators

Smaller splash graphic

Not to complain, but the large graphic at the top of the page ensures that I have to scroll down everytime I change pages. Maybe the problem is the 1024x768 of my laptop screen, but it does seem excessive. Keith (2 Replies)
Discussion started by: kduffin
2 Replies

6. HP-UX

graphic description of cluster HP

Hello, I want to make a graphical decription of a cluster H.P (shema) which runs with MC/Service Guard. Does anyone know a web site where i can found a shema of this. Lot of thanks... (1 Reply)
Discussion started by: steiner
1 Replies

7. UNIX for Advanced & Expert Users

Graphic card problem

Hello experts, could you Pls. help me on the following problem: when i boot my system after starting all services it gives me just "login:" prompt & does not go to the standard logging page,and when i insert one of my accounts to login it gives me the following message: "/dev/fb permission... (3 Replies)
Discussion started by: nikk
3 Replies

8. UNIX Desktop Questions & Answers

graphic problems

Hallo, Is there anyone you is an expert in old sparc hardware ? I have a problem with my "new" ( sparc 20 ,2xCPU,250MB) sparc. For me it is not possible to enhanc the colors of my graphic adaptor.(STP3010PGA TURBOXGX SUN) Is there a chance to adjust more then 256 colors ? Please help my ! (1 Reply)
Discussion started by: joerg
1 Replies

9. UNIX for Dummies Questions & Answers

suse graphic console

suse linux comes default installed with a graphic console....is there any way to switch this to a regular black-on-white text-mode console? any help would be appreciated. okay, -nydel (6 Replies)
Discussion started by: nydel
6 Replies

10. UNIX for Dummies Questions & Answers

Graphic apps

We have app. 20.000 UNIX boxes running mainly Solaris 2.4. Among other things we produce product documentation and have previously used Island Draw to produce images and such. Where do I find objective reviews of similar software packages, have any1 of you done any evaluation? I´ve searched this... (4 Replies)
Discussion started by: FredrikB
4 Replies
Login or Register to Ask a Question
ellipses(3U)						    InterViews Reference Manual 					      ellipses(3U)

NAME
Ellipse, S_Ellipse, F_Ellipse, SF_Ellipse, S_Circle, F_Circle, SF_Circle - abstract base class and predefined subclasses for elliptical structured graphics SYNOPSIS
#include <Unidraw/Graphic/ellipses.h> DESCRIPTION
Ellipse is an abstract base class for elliptical structured graphics objects. It stores geometric information that such graphics require and provides helper functions for calculating extents and for hit detection. Predefined subclasses include S_Ellipse, F_Ellipse, and SF_Ellipse, which draw stroked, filled, and stroked-filled ellipses, respectively; and S_Circle, F_Circle, and SF_Circle, which draw stroked, filled, and stroked-filled circles, respectively. The stroked subclasses store a PSBrush, the filled subclasses store a PSPat- tern, and the stroked-filled subclasses store one of each. ELLIPSE PUBLIC OPERATIONS
void GetOriginal(Coord& x, Coord& y, int& rx, int& ry) Return the ellipse's geometry. (x, y) defines the ellipse's center, while rx and ry define its horizontal and vertical radii, respectively. ELLIPSE PROTECTED OPERATIONS
Ellipse(Coord x, Coord y, int rx, int ry, Graphic* = nil) The constructor is protected to disallow instantiation of the abstract base class. An ellipse's geometry is defined in terms of its center and its horizontal and vertical radii. The constructor also takes an optional graphic from which to obtain an initial set of graphics state. void s_getExtent( float&, float&, float&, float&, float&, Graphic* ) void f_getExtent( float&, float&, float&, float&, float&, Graphic* ) boolean s_contains(PointObj&, Graphic*) boolean f_contains(PointObj&, Graphic*) boolean s_intersects(BoxObj&, Graphic*) boolean f_intersects(BoxObj&, Graphic*) Helper functions that return extent and hit detection information based on the bounding box that the ellipse defines. s_getExtent, s_contains, and s_intersects return information that accounts for the width of a brush, as would be necessary if the ellipse is stroked, while f_getExtent, f_contains, and f_intersects assumes that the ellipse is filled. Subclasses can use the operations to help implement their getExtent, contains, and intersects operations. SUBCLASS PUBLIC OPERATIONS
S_Ellipse(Coord x, Coord y, int rx, int ry, Graphic* = nil) F_Ellipse(Coord x, Coord y, int rx, int ry, Graphic* = nil) SF_Ellipse(Coord x, Coord y, int rx, int ry, Graphic* = nil) S_Circle(Coord x, Coord y, int radius, Graphic* = nil) F_Circle(Coord x, Coord y, int radius, Graphic* = nil) SF_Circle(Coord x, Coord y, int radius, Graphic* = nil) Constructors for the various predefined Ellipse subclasses. SEE ALSO
Graphic(3U), geomobjs(3U), pspaint(3U) Unidraw 2 February 1991 ellipses(3U)