Skip to content
#

textures

Here are 156 public repositories matching this topic...

ivanbacher
ivanbacher commented Apr 17, 2017

Is it possible to use a gradient fill instead of a single colour?

var def = svg.append('defs');
var gradient = def.append('linearGradient')
    .attr('id', 'custom_id_1')
    .attr('x1', '50%')
    .attr('y1', '0%')
    .attr('x2', '50%')
    .attr('y2', '100%');

//set start
gradient.append('stop')
    .attr('offset', '0%')
    .attr('stop-color', 'white')

//set color at the
Vinc3r
Vinc3r commented Mar 22, 2019

I'm a BabylonJS user so I know there is a list about astc, dxt, pvrtc, etc1, etc2, atc on this page : https://doc.babylonjs.com/resources/multi-platform_compressed_textures#khronos-texture-container-format-ktxhttpswwwkhronosorgopenglessdktoolsktx-files

Then I had in mind to go read directly to the source about a short descriptions of what are these formats targetting which OS/hardware, so I get

Improve this page

Add a description, image, and links to the textures topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the textures topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.