package
0.0.0-20220611142855-c75633e8f939
Repository: https://github.com/vbsw/archive.git
Documentation: pkg.go.dev

# README

VISX

GoDoc

About

VISX (Visual Interface System Implementation for X) is a Go package that provides implementation for VIS based on X and OpenGL.

VISX is created by Vitali Baumtrok [email protected] and published at https://gitlab.com/vbit/visx.

Copying

VISX is distributed under the terms of the Boost Software License, version 1.0. (See accompanying file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt)

VISX is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the Boost Software License for more details.

Using Go

Get this project:

$ go get gitlab.com/vbit/visx

Update a local copy:

$ go get -u gitlab.com/vbit/visx

Compile:

$ go install gitlab.com/vbit/visx

Run tests

$ go test gitlab.com/vbit/visx

Using Git

Get the master branch and all refs of this project:

$ git clone https://gitlab.com/vbit/visx.git

See local and remote branches:

$ git branch -a

Check out branches other than master, for example the "development" branch:

$ git branch development origin/development
$ git checkout development

See tracked remote branches:

$ git branch -vv

Update all tracked branches and all refs:

$ git fetch

References