Giter Club home page Giter Club logo

udk_pixelmap_dain's Introduction

Pixelmap_Infoklasse

infoklasse

Note(ToDo List)

  • mobile design
  • checken Deutsch
  • hosting(with image) und danach schicken => Robin

Index

01_Tint

  • Ein Experiment mit Tint

02_U_Array

  • loadPixels
  • get, set, updatePixels, pixelDensity
  • loadPixels => set => updatePixels => image
  • image.loadPixels
  • for(width) for(height)
  • image.get(x, y)
  • image.set(x, y, rgba)
  • image.updatePixels
  • iconizität?
  • buffer

02_Array

  • push
  • createButton
  • save Image
  • .mousePressed(function)
  • .save("name", "file") ex) ("dain", "png") 07image)analyse

03_Operator

Robin_Code Operator_js_mdn

    const color = image.get(x, y);
    const color2 = image.get(x, y + 1);
    let newColor;

    if(lightness(color) > lightness(color2)){
        newColor= [0,0,0,0]
    }else{
        newColor = [255,255,255,255]
    }
    image.set(x, y, newColor)

  • die Unterschied
++i und i++
!== und ==!

pixelSize

let pixelSize = 10;
for(let i = 0; i < img.width; i += pixelSize){
    for(let j = 0; j < img.height; j += pixelSize){
        fill(img.get(i, j))
        rect(i, j, pixelSize, pixelSize)
    }
}

💡mit Mod experimentieren 💡dist, class, mousePos, map, lerp

const dot_size = (lightness(in_color) / 255) * 40
x * CanvasSize / image.width + CanvasSize / image.width * 0.5
  • durch Farben entschieden die Größe von Circle

🐲 Aufgabe

  • +=, == experiment
  • <= experiment

CSV

RobinCode

  • preload => csv

  • methode .getRowCount() .getString(row, column)

  • aufgabe => dokumentation weiter entwickeln.

jQuery

JqueryUI Leaflet JS

overpass utrbo

EO Browser

Custom-Script

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.