0
I Use This!
Inactive

Commits : Listings

Analyzed 1 day ago. based on code collected 1 day ago.
Jan 30, 2025 — Jan 30, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Deleted the 'backup' directory since it does not need to be in version control. More... over 16 years ago
Deleted the 'build' directory since it does not need to be in version control. More... over 16 years ago
Modified the javadoc task so that it does not rely on an external javadoc.xml file. More... over 16 years ago
Deleted unnecessary .directory and .d3lphinview files. More... over 16 years ago
Modified paintPic() to use the Graphics2D fill(Shape) and draw(Shape) methods for better graphics. More... over 16 years ago
Now the paintPic() method enables Graphics attributes like antialiasing. More... over 16 years ago
Added a call to repaint() in the valueChanged() method so that changes to the current size are shown on the icon. More... over 16 years ago
Added testing code in the main() method. More... over 16 years ago
Improved the menu item text. More... over 16 years ago
Added tooltips. More... over 16 years ago
This interface contains all of the tooltips used throughout the application. More... over 16 years ago
Added the StrokeSmoother inner class to allow for better synchronization of code. Also changed 'strokeQueue' (a Queue) to 'strokeVec' (a Vector) since Vectors are synchronized. More... over 16 years ago
Now when repaint() is called, the value of 'delta' given to the method is 0 except in the doRepaintLine() method where now half of the pen's current width is used as 'delta' instead of the pen's current width. This causes the correct amount of the screen to be repainted while not repainting any unnecessary parts of the screen. More... over 16 years ago
Now the renderInto() method only renders the current stroke or previous strokes if they are in the current clip. More... over 16 years ago
Added a @Override annotation to the repaint() method. More... over 16 years ago
Now the paintComponent() method renders the clip's bounds if the user has selected to display the "update box". More... over 16 years ago
In the paintPic() method multiplication by 0.5f instead of division by 2 is now used. More... over 16 years ago
The getWith() and getHeight() methods are now used in the paintComponent(Graphics) method instead of the getSize() method. More... over 16 years ago
Now the drawPath(Path) method uses a Path2D.Float object to render the path instead of successive calls to drawLine(). More... over 16 years ago
Modified to use the ScalableFloat class. More... over 16 years ago
Modified to use the ScalableFloat class. More... over 16 years ago
This class allows easy implementation in other classes (through aggregation) of a floating-point value that can be scaled. More... over 16 years ago
Now the draw(Shape) method in the Graphics2D class (and not methods from the Graphics class) are used for rendering. The draw(Shape) method from the Graphics2D class works with float values and not int values. As such, it can accurately render lines without having to upsample the lines to render. More... over 16 years ago
Fixed a problem with the getBounds2D() method where the bounds returned were much larger than necessary. More... over 16 years ago
Removed calls to the simplify() method (on Path objects) since the simplify() method has been removed from the Path class. More... over 16 years ago
Removed the distSum field, and updated methods that used this field, since it is no longer used. It was used to determine the average distance between points in the path. Also, this class contained numerous methods with varying implementations of stroke smoothing. I removed all of the methods that were not explicitly used to allow the code to be easily maintained. I also removed the simplify() method which didn't actually do anything. More... over 16 years ago
Changed the version number to 0.2.1beta1. More... over 16 years ago
Added synchronization code. More... over 16 years ago
Removed a .d3lphinview file that shouldn't be in version control. More... almost 17 years ago
Modified for NoteLab version 0.2.1. In version 0.2.1 NoteLab has the ability to annotate PDF documents and export the current session to a PDF document. The current code has these abilities. More... almost 17 years ago