3D Plot Region - CreateMesh() and 3D Plot - Messages
#1 Posted: 4/28/2013 8:38:19 PM
3D Plot Region

Regions: 3D Plot.
Functions: CreateMesh().
[albumimg]97[/albumimg] [albumimg]266[/albumimg] [albumimg]264[/albumimg] [albumimg]265[/albumimg] [albumimg]267[/albumimg]
3D Plot. CreateMesh. Examples.zip (190 KiB) downloaded 808 time(s).





Regions: 3D Plot.
Functions: CreateMesh().
[albumimg]97[/albumimg] [albumimg]266[/albumimg] [albumimg]264[/albumimg] [albumimg]265[/albumimg] [albumimg]267[/albumimg]
3D Plot. CreateMesh. Examples.zip (190 KiB) downloaded 808 time(s).
Russia ☭ forever, Viacheslav N. Mezentsev
5 users liked this post
Radovan Omorjan 4/29/2013 2:10:00 AM, Infinity 4/29/2013 3:12:00 AM, Oscar Campo 4/29/2013 10:27:00 AM, Davide Carpi 4/29/2013 11:57:00 AM, zoom 1/17/2016 5:06:00 PM
#2 Posted: 5/3/2013 3:12:32 PM
Looks promising!
In particular I like the right-handedness of the plot.
Issues:
- IsVisible attributes of axesstyle and gridstyle are not responsive.
- strange behaviour if z limits are exceeded by the z-surface. I guess that the surface should be trimmed by the bounding box. Otherwise the axes have to be included in the hidden line algorithm. For now you seem to assume that they are always in the background.
- definition of a function is mandatory. No pure xy-expressions.

In particular I like the right-handedness of the plot.
Issues:
- IsVisible attributes of axesstyle and gridstyle are not responsive.
- strange behaviour if z limits are exceeded by the z-surface. I guess that the surface should be trimmed by the bounding box. Otherwise the axes have to be included in the hidden line algorithm. For now you seem to assume that they are always in the background.
- definition of a function is mandatory. No pure xy-expressions.
Martin Kraska
Pre-configured portable distribution of SMath Studio: https://en.smath.info/wiki/SMath%20with%20Plugins.ashx
1 users liked this post
Вячеслав Мезенцев 5/3/2013 4:21:00 PM
#3 Posted: 5/3/2013 4:51:14 PM
Yes, I know about all these problems. They are based on the library that I used. I'm working on that too.
Let's imagine the xy-expression: 1 + x*y + 3*(x-y)+ sin(t0) -> 1 + x[1]*x[2] + 3*(x[1]-x[2])+ sin(t0) or 1 + x[2]*x[1] + 3*(x[2]-x[1])+ sin(t0) ?
Unlike X-Y Plot we have two independent variables. How do I know their order (x,y) or (y,x)? That's why it is not implemented in Mathcad too. I don't want use only x and y variables for that purpose.
Wrote
...
- definition of a function is mandatory. No pure xy-expressions.
Let's imagine the xy-expression: 1 + x*y + 3*(x-y)+ sin(t0) -> 1 + x[1]*x[2] + 3*(x[1]-x[2])+ sin(t0) or 1 + x[2]*x[1] + 3*(x[2]-x[1])+ sin(t0) ?
Unlike X-Y Plot we have two independent variables. How do I know their order (x,y) or (y,x)? That's why it is not implemented in Mathcad too. I don't want use only x and y variables for that purpose.
Russia ☭ forever, Viacheslav N. Mezentsev
#4 Posted: 5/3/2013 5:09:44 PM
It seems that you can delete the function name "f" from the placeholder and to put something else. It will keep the previous function and not complaining.
When Sisyphus climbed to the top of a hill, they said: "Wrong boulder!"
#5 Posted: 5/3/2013 5:40:00 PM
WroteI don't want use only x and y variables for that purpose.
OK, clearyl I have to accept and respect your preferences, but I would not mind x and y being used as dummy variables just like in the built in 3D graphics region. That may, of course, be limited to cases, where there is no pure function name given.
Assigning the x-axis to the first and the y-axis to the second argument of the plot function prevents the user from plotting f(y,x) instead of f(x,y). If you want to be free to avoid the look of x and y in the placeholder, then you still can assign x and y to other names. You even could get the names as smart defaults for axis labels.
The freedom in variable choice in the xy-plot is obtained at the price of having to keep these variables unassigned above that plot. Even Davide's Clear won't help (I tried that).
Martin Kraska
Pre-configured portable distribution of SMath Studio: https://en.smath.info/wiki/SMath%20with%20Plugins.ashx
#6 Posted: 5/3/2013 5:52:31 PM
I can do this:
1. If you enter a function f(2) then I think it equal to f(x, y)
2. If you enter a function f(1) then I think it equal to f(x[1],x[2]), where x - vector ([x,y]).
3. If you enter a simple expression and it has one undefined variable, then I think it is a vector ([x,y]).
1. If you enter a function f(2) then I think it equal to f(x, y)
2. If you enter a function f(1) then I think it equal to f(x[1],x[2]), where x - vector ([x,y]).
3. If you enter a simple expression and it has one undefined variable, then I think it is a vector ([x,y]).
Russia ☭ forever, Viacheslav N. Mezentsev
#7 Posted: 5/3/2013 6:21:20 PM
Never mind! I shall cope...
Martin Kraska
Pre-configured portable distribution of SMath Studio: https://en.smath.info/wiki/SMath%20with%20Plugins.ashx
#8 Posted: 5/3/2013 7:49:36 PM
uni, i don't know if you could take advantage of this code:
http://www.codeproject.com/Articles/42174/High-performance-WPF-3D-Chart
http://www.codeproject.com/Articles/42174/High-performance-WPF-3D-Chart
1 users liked this post
Вячеслав Мезенцев 5/3/2013 7:54:00 PM
#9 Posted: 5/3/2013 7:56:34 PM
Wroteuni, i don't know if you could take advantage of this code:
http://www.codeproject.com/Articles/42174/High-performance-WPF-3D-Chart
Yes, it's interesting, I added to my bookmarks. I have an account on codeproject.
There is another similar things: Plot 3D surfaces.
Russia ☭ forever, Viacheslav N. Mezentsev
#10 Posted: 5/4/2013 4:51:20 AM
Wrote
Yes, it's interesting, I added to my bookmarks. I have an account on codeproject.
There is another similar things: Plot 3D surfaces.
BTW, the author of the book you mentioned in the xyplot thread, has another book about WPF
"Practical WPF Charts and Graphics"
#11 Posted: 5/7/2013 5:44:23 PM
Updated. Function CreateMesh() moved from the Plot3D plugin. Do not use it any more.
Russia ☭ forever, Viacheslav N. Mezentsev
#12 Posted: 5/7/2013 6:07:09 PM
WroteUpdated. Function CreateMesh() moved from the Plot3D plugin. Do not use it any more.
Thanks for the update. I installed the updated version and removed Plot3D.
now the 3DPlotRegion plugin shows up twice in the plugin manager, see attached screenshot.
Martin Kraska
Pre-configured portable distribution of SMath Studio: https://en.smath.info/wiki/SMath%20with%20Plugins.ashx
#13 Posted: 5/7/2013 6:46:03 PM
WroteWroteUpdated. Function CreateMesh() moved from the Plot3D plugin. Do not use it any more.
Thanks for the update. I installed the updated version and removed Plot3D.
now the 3DPlotRegion plugin shows up twice in the plugin manager, see attached screenshot.
Don't worry, this is normal. Andrey will correct it.
Russia ☭ forever, Viacheslav N. Mezentsev
#14 Posted: 6/9/2013 8:00:54 AM
#15 Posted: 6/9/2013 8:01:26 AM
I mentioned this resource in another thread, VTK.
These are some c# wrappers for VTK :
http://www.vtk.org/Wiki/VTK/CSharp/ActiViz.NET
http://vtkdotnet.sourceforge.net/
http://sourceforge.net/projects/vtknetexamples/
These are some c# wrappers for VTK :
http://www.vtk.org/Wiki/VTK/CSharp/ActiViz.NET
http://vtkdotnet.sourceforge.net/
http://sourceforge.net/projects/vtknetexamples/
1 users liked this post
Вячеслав Мезенцев 6/9/2013 11:19:00 AM
#16 Posted: 6/18/2013 9:02:12 AM
I am using the plugin from the extension manager.
Seems that I can now save the regions, but user settings aren't saved (see attached sheet, where the default settings are not really appropriate).
Is that a local problem or known bug?
Uni, are you going to continue this branch of plotting or do you focus on other ways?
NelderMead.sm (29 KiB) downloaded 233 time(s).
Seems that I can now save the regions, but user settings aren't saved (see attached sheet, where the default settings are not really appropriate).
Is that a local problem or known bug?
Uni, are you going to continue this branch of plotting or do you focus on other ways?
NelderMead.sm (29 KiB) downloaded 233 time(s).
Martin Kraska
Pre-configured portable distribution of SMath Studio: https://en.smath.info/wiki/SMath%20with%20Plugins.ashx
#18 Posted: 2/2/2014 6:54:16 AM
In the previous version, the expression to plot had to be an explicitly defined function. This condition is now relaxed thanks to Davide's FunctionsExtensions plugin. Using the at(expr,var) function, you can substitute values for undefined variables in arbitrary expressions, thus you can use these expressions as if they were functions.
Uni, if you would make CreateMesh() flexible in that it can handle 2- and 3-element vectors, then poking out the submatrix in the 2D case would not be required any more.

Uni, if you would make CreateMesh() flexible in that it can handle 2- and 3-element vectors, then poking out the submatrix in the 2D case would not be required any more.
Martin Kraska
Pre-configured portable distribution of SMath Studio: https://en.smath.info/wiki/SMath%20with%20Plugins.ashx
#19 Posted: 3/4/2014 1:58:30 PM
The current version (0.1.5161.27307) of the 3DPlot plugin interferes with the clipboard. If pasting any expression from the clipboard to the canvas, I get a 3DPlot region instead. There used to be a similar problem with Hyperlink and Conditionally formatted labels, Davide managed to handle this.
Martin Kraska
Pre-configured portable distribution of SMath Studio: https://en.smath.info/wiki/SMath%20with%20Plugins.ashx
#20 Posted: 3/23/2014 10:12:58 AM
Is it possible to use augment(u;v;f) on 3DPlot plugin, like we use on a X-Y Plot plugin? (u;v;f are vectors).
rod_spring.sm (32 KiB) downloaded 230 time(s).
rod_spring.sm (32 KiB) downloaded 230 time(s).
-
New Posts
-
No New Posts