|
From: | Dmitri A. Sergatskov |
Subject: | Re: Fill + RGB colors produces only black plot |
Date: | Sat, 3 Jan 2015 13:24:36 -0600 |
Hello everyone, I'm quite new to Octave.
I'm trying to use the fill function on Octave 3.8.2-4 with different RGB
color combinations.
Unfortunately what I get is typically black areas.
For example, using the demonstration on octave.sourceforge.net and changing
the colors, I get a black polygon on the left and a transparent one on the
right:
t1 = (1/16:1/8:1) * 2*pi;
t2 = ((1/16:1/8:1) + 1/32) * 2*pi;
x1 = sin (t1) - 0.8;
y1 = cos (t1);
x2 = sin (t2) + 0.8;
y2 = cos (t2);
h = fill (x1,y1,[0.5 1 0], x2,y2,[0.5 0 0.5]);
Do you have any ideas about this problem?
fill.m
Description: Text Data
[Prev in Thread] | Current Thread | [Next in Thread] |