TelescopeSt / Geometry

A simple geometry library for Pharo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Geometry

Coverage Status Build Status

A simple work-in-progress library for representing basic geometry shapes (line, circle, ellipse, ...) and doing some computations of top (mainly intersection).

The original repository is: http://smalltalkhub.com/#!/~NataliaTymchuk/Geometry

Version management

This project use semantic versionning to define the releases. This mean that each stable release of the project will get associate a version number of the form vX.Y.Z.

  • X define the major version number
  • Y define the minor version number
  • Z define the patch version number

When a release contains only bug fixes, the patch number increase. When the release contains new features backward compatibles, the minor version increase. When the release contains breaking changes, the major version increase.

Thus, it should be safe to depend on a fixed major version and moving minor version of this project.

Install Geometry

To install Geometry on your Pharo image you can just execute the following script:

    Metacello new
    	githubUser: 'TelescopeSt' project: 'Geometry' commitish: 'v1.x.x' path: 'src';
    	baseline: 'Geometry';
    	load

To add Geometry to your baseline just add this:

    spec
    	baseline: 'Geometry'
    	with: [ spec repository: 'github://TelescopeSt/Geometry:v1.x.x/src' ]

Note that you can replace the v2.x.x tag by a branch as #master or #development or a tag as #v1.0.0, #v1.? or #v1.0.x or a commit SHA.

About

A simple geometry library for Pharo

License:MIT License


Languages

Language:Smalltalk 97.8%Language:HTML 2.2%