Search found 9 matches

by thorthebrave
Wed Dec 08, 2010 2:18 pm
Forum: C, C++, C#
Topic: does dplot work with 64 bit windows operating system
Replies: 1
Views: 13007

does dplot work with 64 bit windows operating system

Hi

I use the dplotlib.dll, the plotting works on a 32 bit machine but not 64.
does dplot work with 64?
by thorthebrave
Wed Dec 23, 2009 5:28 pm
Forum: C, C++, C#
Topic: controlling color gradient of surface plot
Replies: 1
Views: 14072

controlling color gradient of surface plot

how do you lock the color use in a surface plot. I found the ContourCustomColors and CustomLevels. Are these what you use for that.
Do you have some examples of these being used.

The problem I am having is when making movies, I need the scale to stay constant for each plot, such that you get a nice ...
by thorthebrave
Mon Dec 14, 2009 4:52 pm
Forum: C, C++, C#
Topic: command save plot as picture, or surface plot movie.
Replies: 2
Views: 15957

command save plot as picture, or surface plot movie.

Hello

I have a bunch of time step files that contain data for surface plots.
Is there a way to make this into a movie in dplot directly, and is there a way to send commands to dplot to save each surface plot as a jpg or bitmap, such that I can use a movie maker later if a need.

best regards

Tom
by thorthebrave
Tue Dec 01, 2009 12:13 pm
Forum: C, C++, C#
Topic: rotate 3d view
Replies: 1
Views: 13511

rotate 3d view

Hi

does dplot have click and rotate capability. ex left click and drag to rotate 3D plot. I know you can right click and go to options, but is there any other way.
by thorthebrave
Mon Nov 23, 2009 3:25 pm
Forum: C, C++, C#
Topic: XYYY plot problems with number of points
Replies: 3
Views: 20855

thank you

That solved it, thank you so much.
Do you have any documentation for sending data through dlib,
I'd like some information on what all the different commands are, and all the different dp. properties and so on. I Have gone through you download manual, but it is not very extensive on the dlib part.
by thorthebrave
Mon Nov 23, 2009 11:51 am
Forum: C, C++, C#
Topic: XYYY plot problems with number of points
Replies: 3
Views: 20855

XYYY plot problems with number of points

I have 151 y points, Line[0] has 51, Line[1] has 50 and Line[2] has 50

dp.NP[0] = 51;
dp.NP[1] = 50;
dp.NP[2] = 50;

but the 51 makes the plot flash. If I change 51 to 50, such that they are all 50

dp.NP[0] = 50;
dp.NP[1] = 50;
dp.NP[2] = 50;

then it plots, but that means that the 51 point that ...
by thorthebrave
Tue Nov 10, 2009 3:31 pm
Forum: C, C++, C#
Topic: dplot window flashes
Replies: 1
Views: 15315

I got it

It was the dplot.NP , it needed to be exactly the amount of points I had in my x y arrays
by thorthebrave
Tue Nov 10, 2009 3:07 pm
Forum: C, C++, C#
Topic: dplot window flashes
Replies: 1
Views: 15315

dplot window flashes

for an yxplot, button1 test1. When i use your code the plot window stays open. Then I switch out your x any y with my own, that is all that I change. I know that my data is in the 1000s so I should change the scale and tickmark, but even when I do that, the window flashes. Not flashes, but the ...
by thorthebrave
Mon Nov 09, 2009 5:51 pm
Forum: C, C++, C#
Topic: all points are colinear, cannot triangulate
Replies: 1
Views: 18198

all points are colinear, cannot triangulate

when using Plot8 from dplotlib I get, all points are colinear, cannot triangulate.

What does this mean??? and what do I do