- 25 Jan, 2019 1 commit
-
-
Yori Fournier authored
avoiding unecessary formatting.
-
- 23 Jan, 2019 2 commits
-
-
Yori Fournier authored
-
Yori Fournier authored
This is done to prevent confusion when using the server/client interface.
-
- 22 Jan, 2019 1 commit
-
-
Yori Fournier authored
format to allow a better merging of data with client.merge_data query issue is that a MplData object is created on the server side silently... so the user need to be warned.
-
- 18 Jan, 2019 3 commits
-
-
Yori Fournier authored
-
Yori Fournier authored
-
Yori Fournier authored
client-sice >: fig.update(rawdata=['some_data']) now should work.
-
- 14 Aug, 2018 3 commits
-
-
Yori Fournier authored
-
Yori Fournier authored
-
Yori Fournier authored
-
- 13 Jun, 2018 1 commit
-
-
Yori Fournier authored
declare aliases or addAxes (which make less sence but what ever...) tested (by hand -- no unittest and no tutorial) and pass
-
- 04 Apr, 2018 3 commits
-
-
Yori Fournier authored
-
Yori Fournier authored
-
Yori Fournier authored
Tests and tutorials are passing but clearly need some cleaning...
-
- 03 Apr, 2018 1 commit
-
-
Yori Fournier authored
-
- 26 Mar, 2018 2 commits
-
-
Yori Fournier authored
-
Yori Fournier authored
-
- 21 Mar, 2018 2 commits
-
-
Yori Fournier authored
-
Philipp Gast authored
-
- 20 Mar, 2018 1 commit
-
-
Yori Fournier authored
-
- 27 Feb, 2018 1 commit
-
-
Yori Fournier authored
details and improve coding. remark I should already inverse the way axes are appended (from bottom to top) this is really not natural we are used to top to bottom (fucking matplotlib idiot!!) So need to rethink the layout function.. anyway not a good name.
-
- 26 Feb, 2018 1 commit
-
-
Yori Fournier authored
merged in issue 44.
-
- 23 Feb, 2018 1 commit
-
-
Yori Fournier authored
Now the keyword aliases is treated differently. MyFig.update does not replace the aliases but updates it. To allow the user to gives arguments without caring of keep track of the former aliases. to overwrite the attribute aliases completely the user now need to do: fig.aliases = replacement instead of fig.update(aliases=replacement)
-
- 18 Feb, 2018 1 commit
-
-
Yori Fournier authored
-
- 26 Aug, 2017 1 commit
-
-
Yori 'AGy' Fournier authored
But not yet MyAxes and MyFig because need the server version
-
- 18 Jun, 2017 1 commit
-
-
Yori 'AGy' Fournier authored
suppress the reinitialisation of fig.aliases in declareAliases
-
- 30 May, 2017 1 commit
-
-
Yori 'AGy' Fournier authored
If the Axes is of type MyAxes but deriving from Another class It won't pass the isinstance(ax, MyAxes) test However it will pass issubclass(ax.__class__, MyAxes) But if ax is derived from MyAxes from another namespace: ax.__class__ = some_namespace.MyAxes MyAxes = some_other_namespace.MyAxes It won't pass neither... Therefore I commented this test before I find a solution
-
- 06 Apr, 2017 1 commit
-
-
Yori 'AGy' Fournier authored
size of the figure.
-
- 24 Mar, 2017 1 commit
-
-
Yori 'AGy' Fournier authored
-
- 06 Mar, 2017 1 commit
-
-
Philipp Gast authored
-
- 03 Mar, 2017 5 commits
-
-
Yori 'AGy' Fournier authored
now can use in mytool module usage() or usage(<fct-name'>)
-
Philipp Gast authored
(this time with changes)
-
Philipp Gast authored
-
Philipp Gast authored
-
Philipp Gast authored
MyAxes.update() allows to write the MyFig.update() shorter and clearer. I vote to make use of that.
-
- 02 Mar, 2017 2 commits
-
-
Philipp Gast authored
-
Yori 'AGy' Fournier authored
- Now the figure calls the update function of axes This is cleaner and object oriented. def update(self, **kwargs): for ax in self.get_axes(): ax.update(**kwargs)
-
- 01 Mar, 2017 3 commits
-
-
Philipp Gast authored
BUG: two axes figure (test.figure3) shows only one axes
-
Yori 'AGy' Fournier authored
- all tests go through - Now if data does not exists set to None
-
Philipp Gast authored
-