armos 0.0.1

Armos is a free and open source library for creative coding in D programming language.


To use this package, run the following command in your project's root directory:

Manual usage
Put the following dependency into your project's dependences section:

English/日本語

armos

armos is a free and open source library for creative coding in D programming language.

#Description D is very powerfull and easily programming language. But, I couldn't find anything that is able to write easily such as p5 and oF. Thereupon, I began to create this project. I think that first mileStone will probably be summoning D-man into display for the time being.

#Demo

import armos;
class TestApp : ar.BaseApp{
	ar.Mesh line = new ar.Mesh;
	
	void setup(){
		ar.setLineWidth(2);
		line.primitiveMode = ar.PrimitiveMode.LineStrip;
	}
	
	void draw(){
		line.drawWireFrame;
	}
	
	void mouseMoved(int x, int y, int button){
		line.addVertex(x, y, 0);
		line.addIndex(cast(int)line.numVertices-1);
	}
}

void main(){ar.run(new TestApp);}

#Examples armos_examples

#Require

#Install

  1. Clone this repository.

    $git clone https://github.com/tanitta/armos.git

  2. Add to dub package.

    $dub add-local /local/repository/path/

#Why use D?

  • Processing Speed

D is as fast as C++ programs.

  • Build Speed

The compilation is more faster than a speed of C++. Because of that, we can repeat trial and error.

  • Extensibility

We can use C/C++/Objective-C via D binding.

  • Easiness to learn

It isn't so much complex than C++!

  • Other point is here

#Contribution Contributions are very welcome!

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request
Authors:
  • tanitta
Dependencies:
derelict-assimp3, derelict-glfw3, derelict-fi, derelict-gl3, derelict-sdl2, derelict-ft
Versions:
0.2.6 2017-Nov-12
0.2.5 2017-Oct-06
0.2.4 2017-Aug-20
0.2.3 2017-Jul-28
0.2.2 2017-Jul-28
Show all 17 versions
Download Stats:
  • 0 downloads today

  • 0 downloads this week

  • 1 downloads this month

  • 174 downloads total

Score:
2.0
Short URL:
armos.dub.pm