https://svn.lrde.epita.fr/svn/oln/trunk/milena
Index: ChangeLog
from Nicolas Ballas <ballas(a)lrde.epita.fr>
Update documentation about image types and properties.
* sandbox/ballas/doc/image_tours.txt: add the morpher types.
* sandbox/ballas/doc/draft.txt: update.
draft.txt | 10 ++++++
image_tours.txt | 85 ++++++++++++++++++++++++++++++++++++++++++++++++++------
2 files changed, 86 insertions(+), 9 deletions(-)
Index: sandbox/ballas/doc/image_tours.txt
--- sandbox/ballas/doc/image_tours.txt (revision 1864)
+++ sandbox/ballas/doc/image_tours.txt (working copy)
@@ -432,20 +432,87 @@
No change in the property.
+FIXME: Is there any property define for these types?
+
+**** decorated_image
+ templated image: I (image), D (decorator).
+Image that can have additional features.
+
+
+**** plain
+ Prevent an image from sharing data.
+
+**** safe
+ Make an image accessible at undefined location.
+
+
+**** interpolated
+ Make an image readable with float coordinates.
+
+**** neigh::image
+ Add a neighbohood to an image.
+
+Changed properties:
+category -> morpher
+neighb -> some
+
+
*** Domain morpher
-*** Value morpher
+**** sub_image
+
+Make image restricted to a given pset.
+
+Changed Properties:
+ category -> domain_morpher
+ border -> none
-*** Image_if
+**** hexa
-???
+ Make an hexagonal Mesh of the image.
+(work only with 2D image).
+
+Changed Properties:
+ category -> domain_morpher
+ grid -> regular
+
+**** Image_if
+ Parameter I, F
+ Make an image which has its domain restricted to a function.
+
+Changed Properties:
+ category -> domain_morpher
+ io -> read_only if I is cont, trait::image_<I>::io otherwise
+ data -> if the data property of I is linear then stored (FIXME why?)
+ else like I
+
+
+
+**** Image_if_interval
+ Image which domain is restricted by an interval
+
+Changed Property:
+ Same as image_if
+
+
+
+**** translate
+ Translate an Image with a delta point.
+Changed Property:
+ category -> domain_morpher_category.
+
+*** Value morpher
+**** cast_image
+Make the user see the same image but with another data type.
+Changed properties:
+ io -> read_only
+**** value::stack_image
+ Represent a Stack of image.
-Note:
-The different grid (retrieve from point_ class):
- - tick,
- - square,
- - hexa,
- - cube
+Changed properties:
+ category -> value_morpher
+ value -> value::vectorial
+ speed -> fast
Index: sandbox/ballas/doc/draft.txt
--- sandbox/ballas/doc/draft.txt (revision 1864)
+++ sandbox/ballas/doc/draft.txt (working copy)
@@ -315,6 +315,16 @@
the value.
We can access directly to the value of an image image.value
+ values_access: none,
+ random,
+ browsing
+
+ values_io: read,
+ write,
+ read_only < read,// This is dummy
+ write_only < write,
+ read_write < both read'n write
+