Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mattmcmanis/triangulum
Pascal's Triangle Generator
https://github.com/mattmcmanis/triangulum
generator math mathematics pascal-triangle pascal-triangle-generator pascals-triangle
Last synced: 1 day ago
JSON representation
Pascal's Triangle Generator
- Host: GitHub
- URL: https://github.com/mattmcmanis/triangulum
- Owner: MattMcManis
- License: gpl-3.0
- Created: 2018-07-19T19:25:21.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-11T08:42:39.000Z (over 5 years ago)
- Last Synced: 2024-12-13T17:25:48.719Z (19 days ago)
- Topics: generator, math, mathematics, pascal-triangle, pascal-triangle-generator, pascals-triangle
- Language: C#
- Size: 452 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![https://github.com/MattMcManis/Triangulum](https://raw.githubusercontent.com/MattMcManis/Triangulum/master/images/triangulum-logo-128.png)
# Triangulum
Pascal's Triangle Generator* [Overview](#overview)
* [Downloads](#downloads)
* [Installation](#installation)
* [Build](#build)
## Overview
![Triangulum](https://raw.githubusercontent.com/MattMcManis/Triangulum/master/images/triangulum.png)
### Example Output:
Binary 1's
```
1
1 1
1 1
1 1 1 1
1 1
1 1 1 1
1 1 1 1
1 1 1 1 1 1 1 1
1 1
1 1 1 1
1 1 1 1
1 1 1 1 1 1 1 1
1 1 1 1
1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
```Binary 0's
```
0
0 0 0
0 0
0 0 0
0 0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0 0
0 0 0 0
0 0 0 0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0 0```
Binary to Decimal
```
1
3
5
15
17
51
85
255
257
771
1285
3855
4369
13107
21845
65535
```Integer Sum
```
1
2
4
8
16
32
64
128
256
512
1024
2048
4096
8192
16384
32768
```
## Downloads
#### Releases
https://github.com/MattMcManis/Triangulum/releases#### Requires
[Microsoft .NET Framework 4.6.1](https://www.microsoft.com/en-us/download/details.aspx?id=49981)
## Installation
Triangulum is portable and can be run from any location on the computer.
## Build
Visual Studio 2015
WPF, C#, XAML
Visual C++ 19.0 Compiler
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=VTUE7KQ8RS3DN)
Thank you for your support.