Skip to content

Latest commit

 

History

History
55 lines (37 loc) · 1.33 KB

README.md

File metadata and controls

55 lines (37 loc) · 1.33 KB

Graphical Editor

This project was developed as a laboratory work on Software Engineering, but later grew into a unique project that contains a primitive implementation of a graphics editor, that developed using JavaFX.

Prerequisites

  1. IntelliJ IDEA
  2. Basic knowledge in Design Patterns

Functionality

The graphics editor contains the following features for drawing:

  • Rectangles
  • Triangles
  • Ovals
  • Circles
  • Lines
  • Ornaments

You can also draw with:

  • Brush
  • Pencil

Other features include:

  • Line width selection
  • Choice of color of a line of a figure
  • Choice of color of filling of a figure
  • Canvas cleaning
  • Saving work results

Note: to draw a shape you need to press the Draw shape button, it must also be pressed when you are going to draw with a brush or pencil.

In general, everything is based on the Composite, Prototype and Visitor patterns.

Class Diagram

Class Diagram

Example of project performance

Example 1

Example 2