Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "GEF/GEF4/Cloudio"

< GEF‎ | GEF4
(added "howto" for the tag cloud viewer.)
(Layout)
 
(42 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== Example Tag Clouds ==
+
''Note to non-wiki readers: This documentation is generated from the Eclipse wiki - if you have corrections or additions it would be awesome if you added them in [http://wiki.eclipse.org/GEF/GEF4/Cloudio the original wiki page]''.
Below are some examples of tag clouds generated with Cloudio. The images were created with the help of the sample RCP application, modifying different parameters (such as colors, fonts or rotation angles).
+
  
=== Woyzeck ===
+
__NOTOC__
[[Image:Zest_cloudio_woyzeck.png]]
+
  
Created from Georg Büchner's Woyzeck. The most frequent word was boosted.
+
== Introduction ==
 +
The <span style="color:#8A3572">[[GEF/GEF4/Cloudio|GEF4 Cloudio]]</span> component provides support for visualizing tag clouds within a dedicated SWT Canvas or JFace viewer. It is internally decomposed into the single '''[[#Cloudio.UI|Cloudio.UI]]''' module. There are also a couple of undeployed [[GEF/GEF4/Cloudio/Examples#Examples.UI (undeployed)|Cloudio UI Examples]] that demonstrate usage of the (still internal) API. The user documentation is provided in terms of the [[GEF/GEF4/Cloudio/User Guide|GEF4 Cloudio User Guide]].
  
=== Winnetou ===
+
[[Image:GEF4-Components-Cloudio.png|600px]]
[[Image:Zest_cloudio_winnetou.png]]
+
  
Karl May's Winnetou III, using two different fonts, 45-degree rotation and a relatively large x-axis variation when placing the words.
+
----
  
=== Nietzsche ===
+
== Cloudio.UI ==
[[Image:Zest_cloudio_nietzsche.png]]
+
  
'Also sprach Zarathustra', by Nietzsche. 90 degree rotation and a large x-axis variation.
+
*'''feature: org.eclipse.gef4.cloudio.ui'''
 +
*'''bundle: org.eclipse.gef4.cloudio.ui'''
  
=== Woyzeck Cluster ===
+
The [[#Cloudio.UI|Cloudio.UI]] module of [[GEF/GEF4/Cloudio|GEF4 Cloudio]] realizes the Tag cloud view end-user features, as outlined in the [[GEF/GEF4/Cloudio/User Guide | GEF4 Cloudio User Guide]]. It does not provide any public API yet, but exposes its internal API (guarded by an x-friends directive).
[[Image:Zest_cloudio_woyzeck_cluster.png]]
+
  
Same text as in the first example, but with a modified layout algorithm and label provider: Both labels and initial position are assigned based on the first character of the word (for instance, words starting with a to l are at the bottom left). Doesn't really look good, but shows how to extend the functionality to realize a cluster visualization or else...
+
----
  
== How to use Cloudio programmatically ==
+
== Cloudio.UI ==
  
=== TagCloud ===
+
*'''feature: org.eclipse.gef4.cloudio.ui'''
A minimal example to create and display a tag cloud.
+
*'''bundle: org.eclipse.gef4.cloudio.ui'''
  
    public static void main(String [] args) {
+
The [[#Cloudio.UI|Cloudio.UI]] module of [[GEF/GEF4/Cloudio|GEF4 Cloudio]] provides SWT- and JFace-based support for rendering tag clouds.
        final Display display = new Display();
+
 
        final Shell shell = new Shell(display);
+
----
        TagCloud cloud = new TagCloud(shell, SWT.NONE);
+
 
        // Generate some dummy words - color, weight and fontdata must
+
<div id="Cloudio.UI:Root"></div>
        // always be defined.
+
=== {Root} ===
        List<Word> words = new ArrayList<Word>();
+
 
        Word w = new Word("Hello");
+
*'''package: org.eclipse.gef4.cloudio.internal.ui'''
        w.setColor(display.getSystemColor(SWT.COLOR_DARK_CYAN));
+
 
        w.weight = 1;
+
The [[#Cloudio.UI:Root|{Root}]] package provides an SWT widget ([[#TagCloud, Word|TagCloud]]) and a JFace viewer ([[#TagCloudViewer, ICloudLabelProvider|TagCloudViewer]]), which support rendering of word clouds.
        w.setFontData(cloud.getFont().getFontData().clone());
+
 
        words.add(w);
+
==== TagCloud, Word ====
        w = new Word("Cloudio");
+
A <code>TagCloud</code> is a special org.eclipse.swt.widgets.Canvas, dedicated to display a tag cloud. It expects the to be rendered words and related properties (weight, angle, color, font) to be represented as <code>Word</code> input elements and can be created as follows:
        w.setColor(display.getSystemColor(SWT.COLOR_DARK_GREEN));
+
 
        w.setFontData(cloud.getFont().getFontData().clone());
+
<source lang="java" style="border-style:solid;border-color:#f2f2f2;border-width:1px;padding:10px;margin-bottom:10px">
        w.weight = 0.5;
+
public static void main(String [] args) {
        w.angle = -45;
+
  final Display display = new Display();
        words.add(w);
+
  final Shell shell = new Shell(display);
        shell.setBounds(50,50, 300, 300);
+
  TagCloud cloud = new TagCloud(shell, SWT.NONE);
        cloud.setBounds(0,0, shell.getBounds().width, shell.getBounds().height);
+
 
        // Assign the list of words to the cloud:
+
  // Generate some dummy words - color, weight and fontdata must
        cloud.setWords(words, null);
+
  // always be defined.
        shell.open();
+
  List<Word> words = new ArrayList<Word>();
        while (!shell.isDisposed()) {
+
  Word w = new Word("Hello");
            if (!display.readAndDispatch()) display.sleep();
+
  w.setColor(display.getSystemColor(SWT.COLOR_DARK_CYAN));
        }
+
  w.weight = 1;
        display.dispose();
+
  w.setFontData(cloud.getFont().getFontData().clone());
    }
+
  words.add(w);
 +
  w = new Word("Cloudio");
 +
  w.setColor(display.getSystemColor(SWT.COLOR_DARK_GREEN));
 +
  w.setFontData(cloud.getFont().getFontData().clone());
 +
  w.weight = 0.5;
 +
  w.angle = -45;
 +
  words.add(w);
 +
 
 +
  shell.setBounds(50,50, 300, 300);
 +
  cloud.setBounds(0,0, shell.getBounds().width, shell.getBounds().height);
 +
 
 +
  // Assign the list of words to the cloud:
 +
  cloud.setWords(words, null);
 +
  shell.open();
 +
  while (!shell.isDisposed()) {
 +
    if (!display.readAndDispatch()) display.sleep();
 +
  }
 +
  display.dispose();
 +
}
 +
</source>
  
 
The result should look similar to this (String positions are assigned by random):
 
The result should look similar to this (String positions are assigned by random):
Line 60: Line 76:
 
[[Image:Zest_cloudio_snippet1.png]]
 
[[Image:Zest_cloudio_snippet1.png]]
  
=== Tag Cloud Viewer ===
+
==== TagCloudViewer, ICloudLabelProvider ====
The following example creates a tag cloud viewer. In addition to the example above,
+
A <code>TagCloudViewer</code> is a special org.eclipse.jface.viewers.ContentViewer, that renders a tag cloud. It is internally based on a [[#TagCloud, Word|TagCloud]] and enhances the functionality of the tag cloud: it is possible to select
the viewer will enhance the functionality of the tag cloud: It is possible to select
+
and deselect elements by mouse click, to zoom in or out using the mouse wheel and to display tool tips on words. The [[#TagCloudViewer, ICloudLabelProvider|TagCloudViewer]] expects an org.eclipse.jface.viewers.IStructuredContentProvider and an <code>ICloudLabelProvider</code>. The words that are to be rendered in the [[#TagCloud, Word|TagCloud]] are inferred by queuing the <code>ICloudLabelProvider</code> for labels of the elements returned by the org.eclipse.jface.viewers.IStructuredContentProvider. The properties of the words (weight, color, font, angle) are retrieved via the <code>ICloudLabelProvider</code> for each word as well.
and deselect elements by mouse click, to zoom in or out using the mouse wheel and to  
+
display tool tips on words.
+
  
 +
A <code>TagCloudViewer</code> can be used as follows:
  
 +
<source lang="java" style="border-style:solid;border-color:#f2f2f2;border-width:1px;padding:10px;margin-bottom:10px">
 
   import java.util.ArrayList;
 
   import java.util.ArrayList;
 
   import java.util.Arrays;
 
   import java.util.Arrays;
 
   import java.util.List;
 
   import java.util.List;
  <br />
+
 
 
   import org.eclipse.jface.viewers.BaseLabelProvider;
 
   import org.eclipse.jface.viewers.BaseLabelProvider;
 
   import org.eclipse.jface.viewers.ISelectionChangedListener;
 
   import org.eclipse.jface.viewers.ISelectionChangedListener;
Line 87: Line 103:
 
   import org.eclipse.zest.cloudio.TagCloud;
 
   import org.eclipse.zest.cloudio.TagCloud;
 
   import org.eclipse.zest.cloudio.TagCloudViewer;
 
   import org.eclipse.zest.cloudio.TagCloudViewer;
  <br />
+
 
 
   public class TagCloudViewerSnippet {
 
   public class TagCloudViewerSnippet {
  <br />
+
 
 
     static class CustomLabelProvider extends BaseLabelProvider implements ICloudLabelProvider {
 
     static class CustomLabelProvider extends BaseLabelProvider implements ICloudLabelProvider {
  <br />
+
 
 
         private Font font;
 
         private Font font;
  <br />
+
 
 
         public CustomLabelProvider(Font font) {
 
         public CustomLabelProvider(Font font) {
 
             this.font = font;
 
             this.font = font;
 
         }
 
         }
  <br />
+
 
 
         @Override
 
         @Override
 
         public String getLabel(Object element) {
 
         public String getLabel(Object element) {
 
             return element.toString();
 
             return element.toString();
 
         }
 
         }
  <br />
+
 
 
         @Override
 
         @Override
 
         public double getWeight(Object element) {
 
         public double getWeight(Object element) {
 
             return Math.random();
 
             return Math.random();
 
         }
 
         }
  <br />
+
 
 
         @Override
 
         @Override
 
         public Color getColor(Object element) {
 
         public Color getColor(Object element) {
 
             return Display.getDefault().getSystemColor(SWT.COLOR_GREEN);
 
             return Display.getDefault().getSystemColor(SWT.COLOR_GREEN);
 
         }
 
         }
  <br />
+
 
 
         @Override
 
         @Override
 
         public FontData[] getFontData(Object element) {
 
         public FontData[] getFontData(Object element) {
 
             return font.getFontData();
 
             return font.getFontData();
 
         }
 
         }
  <br />
+
 
 
         @Override
 
         @Override
 
         public float getAngle(Object element) {
 
         public float getAngle(Object element) {
 
             return (float) (-90 + Math.random() * 180);
 
             return (float) (-90 + Math.random() * 180);
 
         }
 
         }
  <br />
+
 
 
         @Override
 
         @Override
 
         public String getToolTip(Object element) {
 
         public String getToolTip(Object element) {
Line 128: Line 144:
 
         }
 
         }
 
     }
 
     }
  <br />
+
 
  <br />
+
 
     public static void main(String [] args) {
 
     public static void main(String [] args) {
 
         final Display display = new Display();
 
         final Display display = new Display();
 
         final Shell shell = new Shell(display);
 
         final Shell shell = new Shell(display);
 
         TagCloud cloud = new TagCloud(shell, SWT.NONE);
 
         TagCloud cloud = new TagCloud(shell, SWT.NONE);
  <br />
+
 
 
         final TagCloudViewer viewer = new TagCloudViewer(cloud);
 
         final TagCloudViewer viewer = new TagCloudViewer(cloud);
  <br />
+
 
 
         // A simple content provider for a list of elements  
 
         // A simple content provider for a list of elements  
 
         viewer.setContentProvider(new IStructuredContentProvider() {
 
         viewer.setContentProvider(new IStructuredContentProvider() {
  <br />
+
 
 
             @Override
 
             @Override
 
             public void dispose() { }
 
             public void dispose() { }
  <br />
+
 
 
             @Override
 
             @Override
 
             public void inputChanged(Viewer viewer, Object oldInput,
 
             public void inputChanged(Viewer viewer, Object oldInput,
 
                     Object newInput) {}
 
                     Object newInput) {}
  <br />
+
 
 
             @Override
 
             @Override
 
             public Object[] getElements(Object inputElement) {
 
             public Object[] getElements(Object inputElement) {
 
                 return ((List<?>)inputElement).toArray();
 
                 return ((List<?>)inputElement).toArray();
 
             }
 
             }
  <br />
+
 
 
         });
 
         });
  <br />
+
 
 
         // A simple label provider (see above)
 
         // A simple label provider (see above)
 
         viewer.setLabelProvider(new CustomLabelProvider(cloud.getFont()));
 
         viewer.setLabelProvider(new CustomLabelProvider(cloud.getFont()));
  <br />
+
 
 
         // Demo of an selection listener
 
         // Demo of an selection listener
 
         viewer.addSelectionChangedListener(new ISelectionChangedListener() {
 
         viewer.addSelectionChangedListener(new ISelectionChangedListener() {
  <br />
+
 
 
             @Override
 
             @Override
 
             public void selectionChanged(SelectionChangedEvent event) {
 
             public void selectionChanged(SelectionChangedEvent event) {
Line 166: Line 181:
 
             }
 
             }
 
         });
 
         });
  <br />
+
 
 
         // Demo data
 
         // Demo data
 
         List<String> data = new ArrayList<String>();
 
         List<String> data = new ArrayList<String>();
Line 172: Line 187:
 
         data.add("World");
 
         data.add("World");
 
         data.add("Hello Cloudio");
 
         data.add("Hello Cloudio");
  <br />
+
 
 
         shell.setBounds(50,50, 300, 300);
 
         shell.setBounds(50,50, 300, 300);
 
         cloud.setBounds(0,0, shell.getBounds().width, shell.getBounds().height);
 
         cloud.setBounds(0,0, shell.getBounds().width, shell.getBounds().height);
  <br />
+
 
 
         // Set the input of the viewer
 
         // Set the input of the viewer
 
         viewer.setInput(data);
 
         viewer.setInput(data);
  <br />
+
 
 
         // Set initial selection:
 
         // Set initial selection:
 
         viewer.setSelection(new StructuredSelection(Arrays.asList("Hello Cloudio")));
 
         viewer.setSelection(new StructuredSelection(Arrays.asList("Hello Cloudio")));
  <br />
+
 
         shell.open();
 
         shell.open();
 
         while (!shell.isDisposed()) {
 
         while (!shell.isDisposed()) {
Line 189: Line 204:
 
     }
 
     }
 
   }
 
   }
 
+
</source>
 
The result will look similar to this:
 
The result will look similar to this:
  
 
[[Image:Zest_cloudio_snippet2.png]]
 
[[Image:Zest_cloudio_snippet2.png]]
 +
 +
----
 +
 +
=== Layout ===
 +
 +
*'''package: org.eclipse.gef4.cloudio.internal.ui.layout'''
 +
 +
The [[#Layout|Layout]] package provides the contract ([[#ILayouter, DefaultLayouter|ILayouter]]) for algorithms that perform placement of words during tag cloud generation, as well as a related default implementation ([[#ILayouter, DefaultLayouter|DefaultLayouter]]).
 +
 +
==== ILayouter, DefaultLayouter ====
 +
An <code>ILayouter</code> is used by a [[#TagCloud, Word|TagCloud]] to compute the actual placement of words inside a given area. The <code>DefaultLayouter</code> places words similar to the algorithm used by [http://www.wordle.net Wordle].
 +
 +
----
 +
 +
=== Util ===
 +
 +
*'''package: org.eclipse.gef4.cloudio.internal.ui.util'''
 +
 +
The [[#Util|Util]] package provides a two-dimensional tree structure to store non-overlapping rectangles ([[#RectTree, RectNode, SmallRect|RectTree]]), a custom rectangle implementation ([[#RectTree, RectNode, SmallRect|SmallRect]]) with short precision used by it (which will probably be replaced with [[GEF/GEF4/Geometry#Rectangle|org.eclipse.gef4.geometry.planar.Rectangle]] in the future), and a [[#CloudMatrix|CloudMatrix]], which represents a drawable area within a tag cloud through a [[#RectTree, RectNode, SmallRect|RectTree]].
 +
 +
==== RectTree, RectNode, SmallRect ====
 +
A <code>RectTree</code> is a two-dimensional tree structure to store non-overlapping rectangles that are represented through <code>RectNode</code>s, which are internally based on a short-precision rectangle representation (<code>SmallRect</code>).
 +
 +
==== CloudMatrix ====
 +
A <code>CloudMatrix</code> represents the drawable area within a tag cloud (and information about which word is placed at which coordinate), internally based on a [[#RectTree, RectNode, SmallRect|RectTree]].
 +
 +
[[Category:GEF]]

Latest revision as of 04:50, 28 May 2016

Note to non-wiki readers: This documentation is generated from the Eclipse wiki - if you have corrections or additions it would be awesome if you added them in the original wiki page.


Introduction

The GEF4 Cloudio component provides support for visualizing tag clouds within a dedicated SWT Canvas or JFace viewer. It is internally decomposed into the single Cloudio.UI module. There are also a couple of undeployed Cloudio UI Examples that demonstrate usage of the (still internal) API. The user documentation is provided in terms of the GEF4 Cloudio User Guide.

GEF4-Components-Cloudio.png


Cloudio.UI

  • feature: org.eclipse.gef4.cloudio.ui
  • bundle: org.eclipse.gef4.cloudio.ui

The Cloudio.UI module of GEF4 Cloudio realizes the Tag cloud view end-user features, as outlined in the GEF4 Cloudio User Guide. It does not provide any public API yet, but exposes its internal API (guarded by an x-friends directive).


Cloudio.UI

  • feature: org.eclipse.gef4.cloudio.ui
  • bundle: org.eclipse.gef4.cloudio.ui

The Cloudio.UI module of GEF4 Cloudio provides SWT- and JFace-based support for rendering tag clouds.


{Root}

  • package: org.eclipse.gef4.cloudio.internal.ui

The {Root} package provides an SWT widget (TagCloud) and a JFace viewer (TagCloudViewer), which support rendering of word clouds.

TagCloud, Word

A TagCloud is a special org.eclipse.swt.widgets.Canvas, dedicated to display a tag cloud. It expects the to be rendered words and related properties (weight, angle, color, font) to be represented as Word input elements and can be created as follows:

public static void main(String [] args) {
  final Display display = new Display();
  final Shell shell = new Shell(display);
  TagCloud cloud = new TagCloud(shell, SWT.NONE);
 
  // Generate some dummy words - color, weight and fontdata must
  // always be defined.
  List<Word> words = new ArrayList<Word>();
  Word w = new Word("Hello");
  w.setColor(display.getSystemColor(SWT.COLOR_DARK_CYAN));
  w.weight = 1;
  w.setFontData(cloud.getFont().getFontData().clone());
  words.add(w);
  w = new Word("Cloudio");
  w.setColor(display.getSystemColor(SWT.COLOR_DARK_GREEN));
  w.setFontData(cloud.getFont().getFontData().clone());
  w.weight = 0.5;
  w.angle = -45;
  words.add(w);
 
  shell.setBounds(50,50, 300, 300);
  cloud.setBounds(0,0, shell.getBounds().width, shell.getBounds().height);
 
  // Assign the list of words to the cloud:
  cloud.setWords(words, null);
  shell.open();
  while (!shell.isDisposed()) {
    if (!display.readAndDispatch()) display.sleep();
  }
  display.dispose();
}

The result should look similar to this (String positions are assigned by random):

Zest cloudio snippet1.png

TagCloudViewer, ICloudLabelProvider

A TagCloudViewer is a special org.eclipse.jface.viewers.ContentViewer, that renders a tag cloud. It is internally based on a TagCloud and enhances the functionality of the tag cloud: it is possible to select and deselect elements by mouse click, to zoom in or out using the mouse wheel and to display tool tips on words. The TagCloudViewer expects an org.eclipse.jface.viewers.IStructuredContentProvider and an ICloudLabelProvider. The words that are to be rendered in the TagCloud are inferred by queuing the ICloudLabelProvider for labels of the elements returned by the org.eclipse.jface.viewers.IStructuredContentProvider. The properties of the words (weight, color, font, angle) are retrieved via the ICloudLabelProvider for each word as well.

A TagCloudViewer can be used as follows:

  import java.util.ArrayList;
  import java.util.Arrays;
  import java.util.List;
 
  import org.eclipse.jface.viewers.BaseLabelProvider;
  import org.eclipse.jface.viewers.ISelectionChangedListener;
  import org.eclipse.jface.viewers.IStructuredContentProvider;
  import org.eclipse.jface.viewers.IStructuredSelection;
  import org.eclipse.jface.viewers.SelectionChangedEvent;
  import org.eclipse.jface.viewers.StructuredSelection;
  import org.eclipse.jface.viewers.Viewer;
  import org.eclipse.swt.SWT;
  import org.eclipse.swt.graphics.Color;
  import org.eclipse.swt.graphics.Font;
  import org.eclipse.swt.graphics.FontData;
  import org.eclipse.swt.widgets.Display;
  import org.eclipse.swt.widgets.Shell;
  import org.eclipse.zest.cloudio.ICloudLabelProvider;
  import org.eclipse.zest.cloudio.TagCloud;
  import org.eclipse.zest.cloudio.TagCloudViewer;
 
  public class TagCloudViewerSnippet {
 
    static class CustomLabelProvider extends BaseLabelProvider implements ICloudLabelProvider {
 
        private Font font;
 
        public CustomLabelProvider(Font font) {
            this.font = font;
        }
 
        @Override
        public String getLabel(Object element) {
            return element.toString();
        }
 
        @Override
        public double getWeight(Object element) {
            return Math.random();
        }
 
        @Override
        public Color getColor(Object element) {
            return Display.getDefault().getSystemColor(SWT.COLOR_GREEN);
        }
 
        @Override
        public FontData[] getFontData(Object element) {
            return font.getFontData();
        }
 
        @Override
        public float getAngle(Object element) {
            return (float) (-90 + Math.random() * 180);
        }
 
        @Override
        public String getToolTip(Object element) {
            return element.toString();
        }
    }
 
    public static void main(String [] args) {
        final Display display = new Display();
        final Shell shell = new Shell(display);
        TagCloud cloud = new TagCloud(shell, SWT.NONE);
 
        final TagCloudViewer viewer = new TagCloudViewer(cloud);
 
        // A simple content provider for a list of elements 
        viewer.setContentProvider(new IStructuredContentProvider() {
 
            @Override
            public void dispose() { }
 
            @Override
            public void inputChanged(Viewer viewer, Object oldInput,
                    Object newInput) {}
 
            @Override
            public Object[] getElements(Object inputElement) {
                return ((List<?>)inputElement).toArray();
            }
 
        });
 
        // A simple label provider (see above)
        viewer.setLabelProvider(new CustomLabelProvider(cloud.getFont()));
 
        // Demo of an selection listener
        viewer.addSelectionChangedListener(new ISelectionChangedListener() {
 
            @Override
            public void selectionChanged(SelectionChangedEvent event) {
                IStructuredSelection selection = (IStructuredSelection) viewer.getSelection();
                System.out.println("Selection: " + selection);
            }
        });
 
        // Demo data
        List<String> data = new ArrayList<String>();
        data.add("Hello");
        data.add("World");
        data.add("Hello Cloudio");
 
        shell.setBounds(50,50, 300, 300);
        cloud.setBounds(0,0, shell.getBounds().width, shell.getBounds().height);
 
        // Set the input of the viewer
        viewer.setInput(data);
 
        // Set initial selection:
        viewer.setSelection(new StructuredSelection(Arrays.asList("Hello Cloudio")));
 
        shell.open();
        while (!shell.isDisposed()) {
            if (!display.readAndDispatch()) display.sleep();
        }
        display.dispose();
    }
  }

The result will look similar to this:

Zest cloudio snippet2.png


Layout

  • package: org.eclipse.gef4.cloudio.internal.ui.layout

The Layout package provides the contract (ILayouter) for algorithms that perform placement of words during tag cloud generation, as well as a related default implementation (DefaultLayouter).

ILayouter, DefaultLayouter

An ILayouter is used by a TagCloud to compute the actual placement of words inside a given area. The DefaultLayouter places words similar to the algorithm used by Wordle.


Util

  • package: org.eclipse.gef4.cloudio.internal.ui.util

The Util package provides a two-dimensional tree structure to store non-overlapping rectangles (RectTree), a custom rectangle implementation (SmallRect) with short precision used by it (which will probably be replaced with org.eclipse.gef4.geometry.planar.Rectangle in the future), and a CloudMatrix, which represents a drawable area within a tag cloud through a RectTree.

RectTree, RectNode, SmallRect

A RectTree is a two-dimensional tree structure to store non-overlapping rectangles that are represented through RectNodes, which are internally based on a short-precision rectangle representation (SmallRect).

CloudMatrix

A CloudMatrix represents the drawable area within a tag cloud (and information about which word is placed at which coordinate), internally based on a RectTree.

Copyright © Eclipse Foundation, Inc. All Rights Reserved.