Re: [Scilab-users] Changing properties of mark_mode polyline in param3d1

2022-05-02 Thread Izabela Wójcik-Grząba
Hi, Thank you all for the answers. Problem is solved thanks to matrix with color indexes. Earlier I thought about changing color of each point with the use of "for" loop and that's why I didn't think about the simplest solution which is the matrix. Kind regards, Iza --- Izabela

Re: [Scilab-users] Changing properties of mark_mode polyline in param3d1

2022-05-02 Thread Dang Ngoc Chan, Christophe
Hello, > De : Izabela Wójcik-Grzaba > Envoyé : vendredi 29 avril 2022 17:01 > > The problem is that my real plot is made with param3d1 and consists of > different elements: polylines with line_mode, with mark_mode, xstrings. > It is now impossible to change the type. Both param3d1() and

Re: [Scilab-users] Changing properties of mark_mode polyline in param3d1

2022-05-01 Thread P M
Hello, are you bound to param3d1 or can you use scatter3d instead? scatter3d([1 2 3],[3 4 2],[5 2 4],36,['red1' 'green1' 'blue1'],'fill');a = gca();a.data_bounds = [0,0,0;7,7,7]; BR Philipp Am Fr., 29. Apr. 2022 um 12:57 Uhr schrieb Izabela Wójcik-Grząba < i...@il.pw.edu.pl>: > Hello, > > I

Re: [Scilab-users] Changing properties of mark_mode polyline in param3d1

2022-04-29 Thread Izabela Wójcik-Grząba
The problem is that my real plot is made with param3d1 and consists of different elements: polylines with line_mode, with mark_mode, xstrings. It is now impossible to change the type. Kind regards, Iza --- Izabela Wójcik-Grząba Zespół Konstrukcji Metalowych ZKBiM IIB WIL Politechnika

Re: [Scilab-users] Changing properties of mark_mode polyline in param3d1

2022-04-29 Thread Stéphane Mottelet
Hello, You should rather use scatter3d, which allows to give different colors to markers (and scale the color wrt a given color vector) S. Le 29/04/2022 à 12:49, Izabela Wójcik-Grząba a écrit : Hello, I have a simple example of param3d1 graph: param3d1([1 2 3],[3 4 2],[5 2 4]); h=gce();

[Scilab-users] Changing properties of mark_mode polyline in param3d1

2022-04-29 Thread Izabela Wójcik-Grząba
Hello, I have a simple example of param3d1 graph: param3d1([1 2 3],[3 4 2],[5 2 4]); h=gce(); h.line_mode="off"; h.mark_mode="on"; h.mark_sytle=9; h.mark_size=1; h.mark_foreground=13; h.mark_background=13; I would like to ask if it's possible to change properties of marks