summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorWilliam Joye <billjoye@gmail.com>2016-03-16 14:02:05 (GMT)
committerWilliam Joye <billjoye@gmail.com>2016-03-16 14:02:05 (GMT)
commit8e7298ff13e963d2a36256efeb6e6026d5af0033 (patch)
treea837ff6dbdbc5c07f786a2d2e2255a980c8e8468 /README.md
parent9960ff4237e914c2c0ae02b02c10f9ef9e210240 (diff)
downloadblt-8e7298ff13e963d2a36256efeb6e6026d5af0033.zip
blt-8e7298ff13e963d2a36256efeb6e6026d5af0033.tar.gz
blt-8e7298ff13e963d2a36256efeb6e6026d5af0033.tar.bz2
Update README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md34
1 files changed, 29 insertions, 5 deletions
diff --git a/README.md b/README.md
index 38ae7f9..ca83dfc 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,30 @@
# tkblt
-Derived version of the BLT Toolkit.
-Tcl/Tk 8.5/8.6 TEA compatible.
-Full support for MacOSX and Windows.
-Graph, Barchart, and Vector widgets only.
-Original author George Howlett.
+Introduction to the TkBLT library
+
+TkBLT is a library of extensions to the Tk library. It adds new
+commands and variables to the application's interpreter.
+
+TkBLT is a derived version of the BLT Toolkit by George A. Howlett,
+for Tcl/Tk 8.5/8.6, is TEA compatible, with full support for MacOSX and
+Windows, and is fully compatible with the Tk API. TkBLT is released
+under the original BSD license. TkBLT includes only the Graph and
+Barchart Tk widgets, and the Tcl Vector command.
+
+The following commands are added to the interpreter from the TkBLT library:
+
+Graph
+A 2D plotting widget. Plots two variable data in a window with an optional
+legend and annotations. It has of several components; coordinate axes,
+crosshairs, a legend, and a collection of elements and tags.
+
+Barchart
+A barchart widget. Plots two-variable data as rectangular bars in a
+window. The x-coordinate values designate the position of the bar along
+the x-axis, while the y-coordinate values designate the magnitude.
+The barchart widget has of several components; coordinate axes,
+crosshairs, a legend, and a collection of elements and tags.
+
+Vector
+Creates a vector of floating point values. The vector's components
+can be manipulated in three ways: through a Tcl array variable, a Tcl
+command, or the C API.