A non-exhaustive list of WebGL and WebGPU frameworks and libraries. It is mostly for learning purposes as some of the libraries listed are wip/outdated/not maintained anymore.
| Name | Stars | Last Commit | Description |
|---|---|---|---|
| three.js | ![GitHub |
A non-exhaustive list of WebGL and WebGPU frameworks and libraries. It is mostly for learning purposes as some of the libraries listed are wip/outdated/not maintained anymore.
| Name | Stars | Last Commit | Description |
|---|---|---|---|
| three.js | ![GitHub |
THIS GIST WAS MOVED TO TERMSTANDARD/COLORS REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!
| #!/usr/local/bin/macruby | |
| framework 'QuartzCore' | |
| framework 'AVFoundation' | |
| class NSColor | |
| def toCGColor | |
| # approach #2 | |
| components = [redComponent, greenComponent, blueComponent, alphaComponent] | |
| color_space = CGColorSpaceCreateWithName(KCGColorSpaceGenericRGB) |
| require 'nokogiri' | |
| ugly = Nokogiri::HTML ARGF | |
| tidy = Nokogiri::XSLT File.open('tidy.xsl') | |
| nice = tidy.transform(ugly).to_html | |
| puts nice |