[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Octave-bug-tracker] [bug #60513] meshc error applying property to hggro
From: |
Nicholas Jankowski |
Subject: |
[Octave-bug-tracker] [bug #60513] meshc error applying property to hggroup when trying to apply property to underlying surface plot |
Date: |
Mon, 3 May 2021 13:37:39 -0400 (EDT) |
User-agent: |
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36 |
URL:
<https://savannah.gnu.org/bugs/?60513>
Summary: meshc error applying property to hggroup when trying
to apply property to underlying surface plot
Project: GNU Octave
Submitted by: nrjank
Submitted on: Mon 03 May 2021 01:37:37 PM EDT
Category: Plotting
Severity: 3 - Normal
Priority: 5 - Normal
Item Group: Unexpected Error or Warning
Status: None
Assigned to: None
Originator Name: Nicholas Jankowski
Originator Email:
Open/Closed: Open
Release: 6.2.0
Discussion Lock: Any
Operating System: Any
_______________________________________________________
Details:
[X, Y] = meshgrid (linspace (-3, 3, 40));
Z = sqrt (abs (X .* Y)) ./ (1 + X.^2 + Y.^2);
A = meshc (X, Y, Z, 'FaceColor', 'r');
Matlab it plots as expected, and checking the underlying surface object:
>> A(1).FaceColor
ans =
1 0 0
in Octave, the plot is produced and matches the matlab output, but the
following error is received and the handle A is never created:
>> A = meshc (X, Y, Z, 'FaceColor', 'r');
error: set: unknown hggroup property FaceColor
error: called from
__contour__ at line 233 column 8
meshc at line 101 column 16
>> A
error: 'A' undefined near line 1, column 1
_______________________________________________________
Reply to this item at:
<https://savannah.gnu.org/bugs/?60513>
_______________________________________________
Message sent via Savannah
https://savannah.gnu.org/
- [Octave-bug-tracker] [bug #60513] meshc error applying property to hggroup when trying to apply property to underlying surface plot,
Nicholas Jankowski <=