Main > Free Download Search >

Free vector software for linux

vector

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 309
Bit::Vector 6.4

Bit::Vector 6.4


Bit::Vector is an efficient bit vector, set of integers and big int math library. more>>
Bit::Vector is an efficient bit vector, set of integers and "big int" math library.

CLASS METHODS

Version

$version = Bit::Vector->Version();

Word_Bits
$bits = Bit::Vector->Word_Bits(); # bits in a machine word

Long_Bits
$bits = Bit::Vector->Long_Bits(); # bits in an unsigned long

new
$vector = Bit::Vector->new($bits); # bit vector constructor

@veclist = Bit::Vector->new($bits,$count);

new_Hex
$vector = Bit::Vector->new_Hex($bits,$string);

new_Bin
$vector = Bit::Vector->new_Bin($bits,$string);

new_Dec
$vector = Bit::Vector->new_Dec($bits,$string);

new_Enum
$vector = Bit::Vector->new_Enum($bits,$string);

Concat_List
$vector = Bit::Vector->Concat_List(@vectors);
OBJECT METHODS
new
$vec2 = $vec1->new($bits); # alternative call of constructor

@veclist = $vec->new($bits,$count);

Shadow
$vec2 = $vec1->Shadow(); # new vector, same size but empty

Clone
$vec2 = $vec1->Clone(); # new vector, exact duplicate

Concat
$vector = $vec1->Concat($vec2);

Concat_List
$vector = $vec1->Concat_List($vec2,$vec3,...);

Size
$bits = $vector->Size();

Resize
$vector->Resize($bits);
$vector->Resize($vector->Size()+5);
$vector->Resize($vector->Size()-5);

Copy
$vec2->Copy($vec1);

Empty
$vector->Empty();

Fill
$vector->Fill();

Flip
$vector->Flip();

Primes
$vector->Primes(); # Sieve of Erathostenes

Reverse
$vec2->Reverse($vec1);

Interval_Empty
$vector->Interval_Empty($min,$max);

Interval_Fill
$vector->Interval_Fill($min,$max);

Interval_Flip
$vector->Interval_Flip($min,$max);

Interval_Reverse
$vector->Interval_Reverse($min,$max);

Interval_Scan_inc
if (($min,$max) = $vector->Interval_Scan_inc($start))

Interval_Scan_dec
if (($min,$max) = $vector->Interval_Scan_dec($start))

Interval_Copy
$vec2->Interval_Copy($vec1,$offset2,$offset1,$length);

Interval_Substitute
$vec2->Interval_Substitute($vec1,$off2,$len2,$off1,$len1);

is_empty
if ($vector->is_empty())

is_full
if ($vector->is_full())

equal
if ($vec1->equal($vec2))

Lexicompare (unsigned)
if ($vec1->Lexicompare($vec2) == 0)
if ($vec1->Lexicompare($vec2) != 0)
if ($vec1->Lexicompare($vec2) < 0)
if ($vec1->Lexicompare($vec2) Lexicompare($vec2) > 0)
if ($vec1->Lexicompare($vec2) >= 0)

Compare (signed)
if ($vec1->Compare($vec2) == 0)
if ($vec1->Compare($vec2) != 0)
if ($vec1->Compare($vec2) < 0)
if ($vec1->Compare($vec2) Compare($vec2) > 0)
if ($vec1->Compare($vec2) >= 0)

to_Hex
$string = $vector->to_Hex();

from_Hex
$vector->from_Hex($string);

to_Bin
$string = $vector->to_Bin();

from_Bin
$vector->from_Bin($string);

to_Dec
$string = $vector->to_Dec();

from_Dec
$vector->from_Dec($string);

to_Enum
$string = $vector->to_Enum(); # e.g. "2,3,5-7,11,13-19"

from_Enum
$vector->from_Enum($string);

Bit_Off
$vector->Bit_Off($index);

Bit_On
$vector->Bit_On($index);

bit_flip
$bit = $vector->bit_flip($index);

bit_test
contains
$bit = $vector->bit_test($index);
$bit = $vector->contains($index);
if ($vector->bit_test($index))
if ($vector->contains($index))

Bit_Copy
$vector->Bit_Copy($index,$bit);

LSB (least significant bit)
$vector->LSB($bit);

MSB (most significant bit)
$vector->MSB($bit);

lsb (least significant bit)
$bit = $vector->lsb();

msb (most significant bit)
$bit = $vector->msb();

rotate_left
$carry = $vector->rotate_left();

rotate_right
$carry = $vector->rotate_right();

shift_left
$carry = $vector->shift_left($carry);

shift_right
$carry = $vector->shift_right($carry);

Move_Left
$vector->Move_Left($bits); # shift left "$bits" positions

Move_Right
$vector->Move_Right($bits); # shift right "$bits" positions

Insert
$vector->Insert($offset,$bits);

Delete
$vector->Delete($offset,$bits);

increment
$carry = $vector->increment();

decrement
$carry = $vector->decrement();

inc
$overflow = $vec2->inc($vec1);

dec
$overflow = $vec2->dec($vec1);

add
$carry = $vec3->add($vec1,$vec2,$carry);
($carry,$overflow) = $vec3->add($vec1,$vec2,$carry);

subtract
$carry = $vec3->subtract($vec1,$vec2,$carry);
($carry,$overflow) = $vec3->subtract($vec1,$vec2,$carry);

Neg
Negate
$vec2->Neg($vec1);
$vec2->Negate($vec1);

Abs
Absolute
$vec2->Abs($vec1);
$vec2->Absolute($vec1);

Sign
if ($vector->Sign() == 0)
if ($vector->Sign() != 0)
if ($vector->Sign() < 0)
if ($vector->Sign() Sign() > 0)
if ($vector->Sign() >= 0)

Multiply
$vec3->Multiply($vec1,$vec2);

Divide
$quot->Divide($vec1,$vec2,$rest);

GCD (Greatest Common Divisor)
$vecgcd->GCD($veca,$vecb);
$vecgcd->GCD($vecx,$vecy,$veca,$vecb);

Power
$vec3->Power($vec1,$vec2);

Block_Store
$vector->Block_Store($buffer);

Block_Read
$buffer = $vector->Block_Read();

Word_Size
$size = $vector->Word_Size(); # number of words in "$vector"

Word_Store
$vector->Word_Store($offset,$word);

Word_Read
$word = $vector->Word_Read($offset);

Word_List_Store
$vector->Word_List_Store(@words);

Word_List_Read
@words = $vector->Word_List_Read();

Word_Insert
$vector->Word_Insert($offset,$count);

Word_Delete
$vector->Word_Delete($offset,$count);

Chunk_Store
$vector->Chunk_Store($chunksize,$offset,$chunk);

Chunk_Read
$chunk = $vector->Chunk_Read($chunksize,$offset);

Chunk_List_Store
$vector->Chunk_List_Store($chunksize,@chunks);

Chunk_List_Read
@chunks = $vector->Chunk_List_Read($chunksize);

Index_List_Remove
$vector->Index_List_Remove(@indices);

Index_List_Store
$vector->Index_List_Store(@indices);

Index_List_Read
@indices = $vector->Index_List_Read();

Or
Union
$vec3->Or($vec1,$vec2);
$set3->Union($set1,$set2);

And
Intersection
$vec3->And($vec1,$vec2);
$set3->Intersection($set1,$set2);

AndNot
Difference
$vec3->AndNot($vec1,$vec2);
$set3->Difference($set1,$set2);

Xor
ExclusiveOr
$vec3->Xor($vec1,$vec2);
$set3->ExclusiveOr($set1,$set2);

Not
Complement
$vec2->Not($vec1);
$set2->Complement($set1);

subset
if ($set1->subset($set2)) # true if $set1 is subset of $set2

Norm
$norm = $set->Norm();
$norm = $set->Norm2();
$norm = $set->Norm3();

Min
$min = $set->Min();

Max
$max = $set->Max();

Multiplication
$matrix3->Multiplication($rows3,$cols3,
$matrix1,$rows1,$cols1,
$matrix2,$rows2,$cols2);

Product
$matrix3->Product($rows3,$cols3,
$matrix1,$rows1,$cols1,
$matrix2,$rows2,$cols2);

Closure
$matrix->Closure($rows,$cols);

Transpose
$matrix2->Transpose($rows2,$cols2,$matrix1,$rows1,$cols1);

<<less
Download (0.13MB)
Added: 2007-05-17 License: Perl Artistic License Price:
890 downloads
Comic Vector Icons

Comic Vector Icons


Comic Vector Icons package contains 100 vectorial icons developed with cartoony look and simple shapes. more>>
Comic Vector Icons package contains 100 vectorial icons developed with "cartoony" look and simple shapes that give to your project a funny feeling.

EPS Icons can be rescaled to any size while retaining their original detail, for use in Logo design, Blogs, Web, Software or Print projects.
<<less
Download (45.3MB)
Added: 2007-04-19 License: GPL (GNU General Public License) Price:
946 downloads
Vectoroids 1.1.0

Vectoroids 1.1.0


Vectoroids project is a vector-based asteroid shooting game in SDL. more>>
Vectoroids project is a vector-based asteroid shooting game in SDL.
Your objective is to maneuver a space ship within a field of asteroids, and shoot them into smaller and smaller pieces, eventually destroying them completely.
Vectoroids is based directly on the code for Agendaroids. It has been ported from X-Window to SDL, so it runs on numerous platforms.
Vectoroids includes music, sound effects, and lots of cool color vector graphics!
Main features:
- Smooth vector graphics
- Rotating asteroids
- Fast, table-based trigonometric functions
- High quality sound effects
- Great music
- Pause and resume (even if you quit)
<<less
Download (0.30MB)
Added: 2006-12-07 License: GPL (GNU General Public License) Price:
1051 downloads
Vector Visuals 2006.12.02

Vector Visuals 2006.12.02


Vector Visuals provides an easy-to-use, object-based API for creating and manipulating Java2D-rendered shapes. more>>
Vector Visuals provides an easy-to-use, object-based API for creating and manipulating Java2D-rendered shapes and images. The project features object embedding, dynamic connectors, and multithreaded task support.
Vector Visuals has been downloaded thousands of times, and is already in use in a variety of applications. A few that we know of are a business ontology viewer, a particle simulator, and a childrens e-book builder.
Enhancements:
- This release of is a combination of bugfixes and new features.
- Persistence delegates were added for all of the Vector Visuals objects.
- The examples were moved out into their own source folder.
- Additionally, the entire product is now licensed under a permissive "New BSD"-style license.
<<less
Download (0.039MB)
Added: 2006-12-03 License: BSD License Price:
1057 downloads
Search::VectorSpace 0.02

Search::VectorSpace 0.02


Search::VectorSpace is a very basic vector-space search engine. more>>
Search::VectorSpace is a very basic vector-space search engine.

SYNOPSIS

use Search::VectorSpace;

my @docs = ...;
my $engine = Search::VectorSpace->new( docs => @docs, threshold => .04);
$engine->build_index();

while ( my $query = ) {
my %results = $engine->search( $query );
print join "n", keys %results;
}

This module takes a list of documents (in English) and builds a simple in-memory search engine using a vector space model. Documents are stored as PDL objects, and after the initial indexing phase, the search should be very fast. This implementation applies a rudimentary stop list to filter out very common words, and uses a cosine measure to calculate document similarity. All documents above a user-configurable similarity threshold are returned.

<<less
Download (0.004MB)
Added: 2007-04-06 License: Perl Artistic License Price:
933 downloads
VectorLinux 5.8 SOHO Live

VectorLinux 5.8 SOHO Live


Vector Linux is a small, fast, Linux operating system for Intel, AMD and x86 compatible systems. more>>
Vector Linux is a small, fast, Linux operating system for Intel, AMD and x86 compatible systems, based on one of the original Linux distributions, Slackware.
The Vector development team is proud to announce SOHO 5.1.2-live. We started with SOHO 5.1 added all the recent bugfix patches, and rolled it into a livecd. This is what I believe to be the most feature packed livecd available. It comes with two complete desktops kde-3.4.2, and xfce4.
Built upon the great heritage that is slackware. this release features the 2.6.15.1 kernel, OpenOffice 2.0, Firefox-1.5, Scribus, the Gimp, Mplayer, multimedia pluggins, printer support, scanner support and everything a complete desktop/work station should have.
Plus all of Vectors own administration utilities, and just look at this list of wireless modules
If youve ever wanted to try Vector, or just wanted to show your friends, without having to partition hard drives then here is your chance.
Enhancements:
- The VectorLinux team is proud to announce the release of VectorLinux 5.8 Live CD and the first SOHO 5.8 alpha live CD and DVD. This is the final release for 5.8 standard GOLD live. The hard drive installer that has been problematic is fixed and should work well. The SOHO 5.8 alpha live comes in either CD or DVD editions. The DVD edition includes all that is in the SOHO 5.8 install release plus 62 additional language packs for KDE. The CD version has lost some functionality due to size constraints. The development tool chain and OpenOffice.org were removed.
<<less
Download (692MB)
Added: 2007-05-28 License: GPL (GNU General Public License) Price:
881 downloads
Gnome-Vector-Network-Analyzer 0.1.2

Gnome-Vector-Network-Analyzer 0.1.2


Gnome-Vector-Network-Analyzer is a GTK+/Gnome2 graphical front end for the IW3HEV Vector Network Analyzer. more>>
Gnome-Vector-Network-Analyzer is a GTK+/Gnome2 graphical front end for the IW3HEV Vector Network Analyzer, also has a signal generator.
Gnome-Vector-Network-Analyzer displays graphicaly SWR, Phase, Return Loss, X impedance, Serial resistance, |Z| Impedanze, and Inductance, and capacitance.
Enhancements:
- New version with support for the new 180 Mhz miniVNA and the old parallel port 70 Mhz VNA.
- Also with printing capabilities.
<<less
Download (0.40MB)
Added: 2006-07-26 License: GPL (GNU General Public License) Price:
1189 downloads
Audio::TagLib::ByteVector 1.42

Audio::TagLib::ByteVector 1.42


Audio::TagLib::ByteVector is a byte vector. more>>
Audio::TagLib::ByteVector is a byte vector.

SYNOPSIS

use Audio::TagLib::ByteVector;

my $i = Audio::TagLib::ByteVector->new();
$i->setData("blah blah blah");
print $i->data(), "n"; # got "blah blah blah"

This class provides a byte vector with some methods that are useful for tagging purposes. Many of the search functions are tailored to what is useful for finding tag related paterns in a data array.

<<less
Download (1.4MB)
Added: 2006-09-26 License: Perl Artistic License Price:
1123 downloads
Aeris

Aeris


Aeris is a nice, light maccy theme for KDE. more>>
Aeris is a nice, light maccy theme for KDE. Enjoy this, and please comment any suggestions you have.

Overall design, QtCurve theme, color scheme, (partial) Emerald theme: SaikoBee

Design suggestions, The freakin sweet buttons for the Emerald theme: Pox "Insane Vector Man"

Special thanks: Snicket, for coming up with the name for this theme!

<<less
Download (0.14MB)
Added: 2007-04-13 License: GPL (GNU General Public License) Price:
928 downloads
Math::Vec 1.01

Math::Vec 1.01


Math::Vec is a Object-Oriented Vector Math Methods in Perl. more>>
Math::Vec is a Object-Oriented Vector Math Methods in Perl.

SYNOPSIS

use Math::Vec;
$v = Math::Vec->new(0,1,2);

or

use Math::Vec qw(NewVec);
$v = NewVec(0,1,2);
@res = $v->Cross([1,2.5,0]);
$p = NewVec(@res);
$q = $p->Dot([0,1,0]);

or

use Math::Vec qw(:terse);
$v = V(0,1,2);
$q = ($v x [1,2.5,0]) * [0,1,0];

NOTICE

This module is still somewhat incomplete. If a function does nothing, there is likely a really good reason. Please have a look at the code if you are trying to use this in a production environment.

<<less
Download (0.010MB)
Added: 2007-07-03 License: Perl Artistic License Price:
847 downloads
Gestalter 0.7.6

Gestalter 0.7.6


Gestalter is a free vector drawing program. more>>
Gestalter is a free vector drawing program. The user interface is loosely modelled after the famous Illustrator by Adobe. The central element is the Bezier curve used as a base part for almost every other object.

Complex paths are possible, compound paths can be constructed, grouping of elements is enabled and everything can be screened by a mask. Multiple layers are possible, one can choose between two display modes: a antialiased and a wireframe one. The native storage format is a subset of SVG, printing output is Postscript.

You can place pixel images and transform (rotate, skew, scale, etc.) but not edit them (use GIMP for editing pixel image data). You can open the Postscript output of gestalter in GIMP to use your drawings on The Net.

<<less
Download (0.85MB)
Added: 2005-08-05 License: GPL (GNU General Public License) Price:
1544 downloads
WebCharts3D 5.2

WebCharts3D 5.2


WebCharts 3 allows you to deliver general purpose and specialized 2- and 3-dimensional charts. more>>
WebCharts 3 allows you to deliver general purpose and specialized 2- and 3-dimensional charts as applets or interactive server-generated images (PNG, GIF, JPEG, SWF, SVG, PDF, TIFF, and WBMP) to Web browsers and mobile devices, or embed charts into stand-alone Swing/SWT applications.
WebCharts3D includes a WYSIWYG (What You See Is What You Get) designer that can be easily incorporated into your own applications to provide your end-users with chart editing capabilities. Full JSF support is included.
Enhancements:
- This version offers many enhancements including new chart attributes such as line and curve strokes and error bars, new maps, and improved gauges.
- It also provides a full-featured plugin for Eclipse that can be used instead of WebCharts3D Designer and offers XML, Java, and JSF/JSP/Swing/SWT code generation capabilities along with browser-based chart preview.
- The product now supports two additional formats - VML (Vector Markup Language) and CANVAS tag, which allow it to render the charts directly as vector graphics inside the browsers instead of using image generation.
<<less
Download (8.4MB)
Added: 2007-04-17 License: GPL (GNU General Public License) Price:
1196 downloads
Quick Order 1.1

Quick Order 1.1


Quick Order provides an ordering system using Java Wireless HTTP Form. more>>
Quick Order provides an ordering system using Java Wireless HTTP Form.
It uses J2ME libraries to submit forms to an HTTP server running PHP and MySQL. It can run on any embedded device that supports Java Wireless, including mobile phones and Palm systems.
It is ideal for making orders in restaurants, point of sale (POS), etc. It supports English and Chinese Big 5 encoding.
Enhancements:
- PASP is used for the server-side language font.
- An HTTP POST method was added to the server.
- A vector is used to allow flexibility of ordered items.
<<less
Download (0.021MB)
Added: 2007-02-16 License: GPL (GNU General Public License) Price:
987 downloads
x2svg 1.2 Beta 1

x2svg 1.2 Beta 1


x2svg is an application to graphically lay out files like DTDs and Java property files as scalable vector graphics (SVG). more>>
x2svg is an application to graphically lay out files like DTDs and Java property files as scalable vector graphics (SVG). SVG diagrams can be converted into PDF files directly from within x2svg.

<<less
Download (0.28MB)
Added: 2007-08-13 License: LGPL (GNU Lesser General Public License) Price:
804 downloads
AutoTrace 0.31.1

AutoTrace 0.31.1


AutoTrace converts bitmap to vector graphics. more>>
AutoTrace is a program for converting bitmap to vector graphics. The aim of the AutoTrace project is the development of a freely available application with a functionality similar to CorelTrace or Adobe Streamline.
Main features:
- Inputformats BMP, TGA, PNM, PPM, PGM, PBM and those supported by ImageMagick.
- Exportformat Postscript, svg, xfig, swf, pstoedit, emf, dxf, cgm, mif, p2e and sk
<<less
Download (0.35MB)
Added: 2005-05-04 License: GPL (GNU General Public License) Price:
1646 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5