#watchcolor
Explore tagged Tumblr posts
Text
Escape into the intricate world of time with Horological Haven: Adult Coloring Adventure! ⌚✨ Immerse yourself in the artistry of watch coloring, available for digital and printable download. Perfect for moments of relaxation or a thoughtful gift for a friend who appreciates the beauty of timepieces. Unleash your creativity and explore the enchanting details of this horological journey. 🖍️🎁
#HorologicalHaven#AdultColoringAdventure#WatchColoring#DigitalDownload#PrintableArt#GiftForFriend#TimepieceArtistry#ColoringBookAdult#CreativeEscape#ArtisticJourney
0 notes
Text
I keep underestimating how long it takes to paint things
@jessibbb
#sanders sides#intruality#moduke#remus sanders#patton sanders#ts remus#ts morality#watchcolor#sketchbook#rainbow stretch mark tattoos#rainbow#tattoos#lovelycatdraws#my art#they arent shown very well with these poses ughhhhh
142 notes
·
View notes
Photo
加個金框就可以放Musée du Louvre👨🏻🎨🤪 #figuredrawing#livedrawing#sketch#watchcolor#watercolorfigure#femalefigure#framedart#artstudent#artsy#baroqueframe#watercolorsketch https://www.instagram.com/p/Bw98RRFBAs6/?utm_source=ig_tumblr_share&igshid=iuug95465h4v
#figuredrawing#livedrawing#sketch#watchcolor#watercolorfigure#femalefigure#framedart#artstudent#artsy#baroqueframe#watercolorsketch
3 notes
·
View notes
Photo
... ساعة شاومي #Xiaomi الذكية #WatchColor بكامل أناقتها و بسعر 115$ فقط الآن في الأسواق. تأتي بشاشة دائرية 1.39 بوصة AMOLED 454x454 و دعم GPS و Bluetooth 5.0 و NFC و fitness tracking و heart-rate و sleep tracking و 5ATM و بطارية 420mAh تكفي لمدة 14 يوم أو 22 يوم عند الاستخدام العادي. https://www.instagram.com/p/B68endbj1YO/?igshid=o16y0lsmkkgo
0 notes
Photo
Making more people. Just been sketching and completing some non-exciting projects this past week. I plan to post my sketch work during this weekend...aka tomorrow ;) . . . #amenakay #sketchbook #greenhair #watchcolor #mystyle #artstudio #procreate #digitallife #pluggedin #colorful #justdraw #draw #sketching #art #artwork #woman #bleedart
#sketchbook#draw#woman#art#colorful#bleedart#artstudio#sketching#greenhair#justdraw#mystyle#watchcolor#artwork#amenakay#pluggedin#digitallife#procreate
0 notes
Link
Specification:Item Type: Wrist WatchDial Window Material Type: Hardlex GlassBrand Name: CURRENModel Number: 8110Movement: Quartz WatchColor: Black, ...
0 notes
Text
ORANGE Brand 1 Set Top luxury Japan MIYOTA 360° Rotating Petals Women Watches Ladies Gifts Stainless Steel Waterproof Watches
ORANGE Brand 1 Set Top luxury Japan MIYOTA 360° Rotating Petals Women Watches Ladies Gifts Stainless Steel Waterproof Watches
Just For Today
Just For Today get free read 60 days !!!
Only At My Best Shop Place : https://s.click.aliexpress.com/e/_AN9t2C
ORANGE Brand 1 Set Top luxury Japan MIYOTA 360° Rotating Petals Women Watches Ladies Gifts Stainless Steel Waterproof Watches
ORANGE from London 360° rotating petals dial high quality A+++++ Full Stainless Steel Japan MIYOTA 2035 movement Water Resistance Depth: 3Bar Two-year warranty comes with original box and bags,and comes with the bee bracelet Brand Name: Hannah MartinMovement: QUARTZClasp Type: Push Button Hidden ClaspOrigin: CN(Origin)Case Material: Stainless SteelWater Resistance Depth: 3BarStyle: Fashion & CasualBand Width: 33mmCase Shape: RoundCase Thickness: 10mmFeature: Shock ResistantFeature: Water ResistantDial Window Material Type: HardlexModel Number: OR-601Band Length: 23cmBoxes & Cases Material: PaperBand Material Type: Stainless SteelDial Diameter: 36mmWOMEN WATCH: WOMEN WATCHcolor: dark blue purple green watches
0 notes
Photo
İşte Xiaomi Watch Color’ın Kutusu https://teknodiot.com/xiaomi-watch-color-kutusu #xiaomi #watchcolor
0 notes
Link
For just $96.37 Description: Diameter: 42 mm Style: Fashion & Casual Band Length: 24.5 cm Case Thickness: 14 mm Clasp Type: Buckle Luminous Case Material: Stainless Steel Case Gender: Men Band Width: 22 mm Dial Window Material Type: Glass Movement: Automatic Self-Wind
0 notes
Text
[Sample]時計を作る
時間を調べる
void setup() {
size( 500, 500 ); }
void draw() { background( 255 );
int hour = hour();//時間を取得 int minute = minute();//分を取得 int second = second();//秒を取得 println( hour + ":" + minute + ":" + second );
}
針を描く
void setup() { size( 500, 500 ); frameRate( 1 ); }
void draw() { background( 255 );
int hour = hour(); int minute = minute(); int second = second(); println( hour + ":" + minute + ":" + second );
float secondAngle = second/60.0 * 360;//角度を求める pushMatrix();//座標を記憶 translate( width/2, height/2 );//画面の中心に移動 rotate( radians( secondAngle) );//求めた角度を回転 stroke( 255, 0, 0); strokeWeight(1); line( 0, 0, 0, -200 );//200pxの長さの線を描く popMatrix();
float minuteAngle = minute/60.0 * 360; pushMatrix(); translate( width/2, height/2 ); rotate( radians( minuteAngle) ); stroke(0); strokeWeight(3); line( 0, 0, 0, -200 ); popMatrix();
float hourAngle = (hour%12)/12.0 * 360; hourAngle += 30*(minuteAngle/360.0);//分針の進みを時針に加える pushMatrix(); translate( width/2, height/2 ); rotate( radians( hourAngle) ); stroke( 0 ); strokeWeight(7); line( 0, 0, 0, -150 ); popMatrix(); }
文字盤を描く
void setup() { size( 500, 500 ); }
void draw() { background( 255 );
int hour = hour(); int minute = minute(); int second = second(); println( hour + ":" + minute + ":" + second );
float secondAngle = second/60.0 * 360; pushMatrix(); translate( width/2, height/2 ); rotate( radians( secondAngle) ); stroke( 255, 0, 0); strokeWeight(1); line( 0, 0, 0, -200 ); popMatrix();
float minuteAngle = minute/60.0 * 360; pushMatrix(); translate( width/2, height/2 ); rotate( radians( minuteAngle) ); stroke(0); strokeWeight(3); line( 0, 0, 0, -200 ); popMatrix();
float hourAngle = (hour%12)/12.0 * 360; hourAngle += 30*(minuteAngle/360.0);//分針の進みを時針に加える pushMatrix(); translate( width/2, height/2 ); rotate( radians( hourAngle) ); stroke( 0 ); strokeWeight(7); line( 0, 0, 0, -150 ); popMatrix();
for ( int i=1; i<=12; i++) {//1~12まで繰り返す //三角関数で角度からX,Y座標を求める float x = cos( radians( i*30 - 90) ) * 200 + width/2; float y = sin( radians( i*30 - 90) ) * 200 + height/2; fill( 0 ); text( i, x, y );//文字を書く } }
ワーク:変な時計を作ろう
void setup() { size( 500, 500 ); noStroke(); colorMode(HSB, 360, 100, 100, 100); }
void draw() { background( 0, 0, 100 );
float hour = hour(); float minute = minute(); float second = second(); println( hour + ":" + minute + ":" + second );
hour = map( hour, 0, 24, 0, 100 );//0~24を0~100に変換 minute = map( minute, 0, 60, 0, 100 );//0~60を0~100に変換 second = map( second, 0, 60, 0, 360 );//0~60を0~360に変換 color watchColor = color( second, minute, hour);//塗り色に指定
fill( watchColor ) ; ellipse( width/2, height/2, 400, 400 ); }
void setup() { size( 500, 500 ); noStroke(); colorMode(HSB, 360, 100, 100, 100); rectMode( CENTER ); }
void draw() { background( 0, 0, 100 );
float hour = hour(); float minute = minute(); float second = second(); println( hour + ":" + minute + ":" + second );
hour = map( hour, 0, 24, 0, 360 );//0~24を0~360に変換 minute = map( minute, 0, 60, 0, width );//0~60を0~255に変換 second = map( second, 0, 60, 0, height );//0~60を0~255に変換 color watchColor = color( hour, 100, 100, 100 );//塗り色に指定
fill( watchColor ) ; rect( width/2, height/2, minute, second );
}
ArrayList<Mover> movers = new ArrayList<Mover>();
void setup() { size( 500, 500 ); colorMode(HSB, 360, 100, 100, 100); background( 0, 0, 100); }
void draw() { noStroke(); fill( 0, 0, 100, 2 ); rect( 0, 0, width, height);
float hour = hour(); float minute = minute(); float second = second();
float secondAngle = second/60.0 * 360;//角度を求める float minuteAngle = minute/60.0 * 360; float hourAngle = (hour%12)/12.0 * 360; hourAngle += 30*(minuteAngle/360.0);//分針の進みを時針に加える
// sec PVector p = new PVector( width/2.0, height/2.0); float x = cos( radians(secondAngle-90) ); float y = sin( radians(secondAngle-90) ); PVector v = new PVector( x, y ); color c = color(50, 50, 100, 100); float s = 20; movers.add( new Mover( p, v, c, s )); if ( movers.size() > 1000 ) movers.remove(0);
// min PVector mp = new PVector( width/2.0, height/2.0); float mx = cos( radians(minuteAngle-90) ) ; float my = sin( radians(minuteAngle-90) ) ; PVector mv = new PVector( mx, my ); color mc = color(170, 50, 100, 100); color ms = 20; movers.add( new Mover( mp, mv, mc, ms )); if ( movers.size() > 1000 ) movers.remove(0);
// hour PVector hp = new PVector( width/2.0, height/2.0); float hx = cos( radians(hourAngle-90) ) ; float hy = sin( radians(hourAngle-90) ) ; PVector hv = new PVector( hx, hy ); color hc = color(290, 50, 100, 100); color hs = 20; movers.add( new Mover( hp, hv, hc, hs )); if ( movers.size() > 1000 ) movers.remove(0);
for ( Mover m : movers) { m.update(); m.display(); } filter( BLUR, 3 ); }
class Mover { PVector pos; PVector vec; color mycolor; float scale;
Mover( PVector _pos, PVector _vec, color _color, float _scale) { pos = _pos; vec = _vec; mycolor = _color; scale = _scale; }
void update() { pos.add(vec); }
void display() { fill( mycolor ); ellipse( pos.x, pos.y, scale, scale ); } }
dataフォルダにパーティクルの画像"dot.png"とフォントデータ”FrutigerLTStd-Roman-300.vlw"を入れる。
particleTime.pde
// Mover --------------- int moversNum = 7500; ArrayList<Mover> movers;
// Time ---------------- PGraphics graTime; PFont font;
// Timer --------------- int timer = 3000; int counter = 0;
// Dot ----------------- PImage dot;
void setup() { size( 1200, 800 ); noStroke(); colorMode( RGB, 1.0 );
dot = loadImage( "dot.png" ); font = loadFont( "data/FrutigerLTStd-Roman-300.vlw" );
graTime = createGraphics(width, height ); drawGraTime();
movers = new ArrayList<Mover>(); for ( int i=0; i<moversNum; i++) { movers.add( new Mover(dot) ); } }
void draw() {
background( 0 );
drawGraTime();
checkTimer();
for ( Mover m : movers ) { m.update(); m.display(); }
}
// Time =============================== void drawGraTime() { String strMin = formatNum( minute(), 2 ); String strHou = formatNum( hour(), 2 ); graTime.beginDraw(); graTime.colorMode( RGB, 1.0 );
graTime.background( 0.0 ); graTime.fill( 1.0 ); graTime.textFont(font, 300 ); //graTime.textSize( 300 ); graTime.text( strHou+":"+ strMin, 190, 500); graTime.endDraw();
//image( graTime, 0, 0 ); }
void checkTimer() {
int current = millis(); if ( current - counter > timer ) {
counter = current;
for ( Mover m : movers ) {
float x; float y; color c; do { x = random(width); y = random(height); c = graTime.get( (int)x, (int)y); } while ( c < color(0.99) );
m.setTarget( new PVector( x, y ) ); } } }
Mover.pde
class Mover {
PVector pos; PVector vel; PVector acc;
PVector targetPos;
float size = 1; PImage dot;
Mover( PImage _dot ) { dot = _dot; targetPos = new PVector(width/2, height/2); pos = new PVector( random(width), random(height) ); vel = new PVector(0, 0); acc = new PVector(0, 0); }
void update() {
PVector vec = new PVector( targetPos.x - pos.x, targetPos.y - pos.y ); vec.normalize(); vec.mult( 0.5 ); acc.add(vec);
vel.add( acc ); vel.mult(0.94); pos.add( vel );
acc.mult(0); }
void display() { image( dot, pos.x, pos.y, size, size); }
void setTarget( PVector _targetPos) { targetPos = _targetPos; float power = 25; acc = new PVector( random(-power, power), random(-power, power) ); } }
util.pde
String formatNum( int _num, int _digit ) { String strNum = str(_num); while ( strNum.length() < _digit ) { strNum = "0" + strNum; } return strNum; }
0 notes
Photo
My personal favourite👨🏻🎨 #figuredrawing#livedrawing#sketch#watchcolor#watercolorfigure#femalefigure#framedart#artstudent#artsy#baroqueframe#watercolorsketch https://www.instagram.com/p/BxEU-VxhOjF/?utm_source=ig_tumblr_share&igshid=rhbd657k54jv
#figuredrawing#livedrawing#sketch#watchcolor#watercolorfigure#femalefigure#framedart#artstudent#artsy#baroqueframe#watercolorsketch
1 note
·
View note
Photo
... شاومي #Xiaomi تطرح بعض الصور و فيديو ترويجي لساعتها الذكية #WatchColor القادمة رسميا في 3 يناير المقبل بشاشة 1.39 بوصة 454x454 و بطارية 14 يوم 420mAh و ضد الماء و الغبار و بلوتوث 5.0. https://www.instagram.com/p/B6vx3PNhkQy/?igshid=16kyj5toz48vj
0 notes
Link
For just $96.37 Description: Diameter: 42 mm Style: Fashion & Casual Band Length: 24.5 cm Case Thickness: 14 mm Clasp Type: Buckle Luminous Case Material: Stainless Steel Case Gender: Men Band Width: 22 mm Dial Window Material Type: Glass Movement: Automatic Self-Wind
0 notes
Link
For just $96.37 Description: Diameter: 42 mm Style: Fashion & Casual Band Length: 24.5 cm Case Thickness: 14 mm Clasp Type: Buckle Luminous Case Material: Stainless Steel Case Gender: Men Band Width: 22 mm Dial Window Material Type: Glass Movement: Automatic Self-Wind
0 notes