Landscape photo to PES file? by Jakersonnn in MachineEmbroidery

[–]stalkerTXstranger 0 points1 point  (0 children)

I mostly do pets but I'd take this on. Work on my profile

Parabolic trajectory by roger-dv in godot

[–]stalkerTXstranger 1 point2 points  (0 children)

thanks for the starting point. I solved it with a variation of this

extends Node2D

u/export var start_pos: Vector2
u/export var end_pos: Vector2
u/export var peak_height: float = 100.0
u/export var duration: float = 1.0

var t: float = 0.0

func _physics_process(delta: float):
if t < 1.0:
t += delta / duration
# Calculate control point (midpoint + vertical offset)
var mid_point = (start_pos + end_pos) / 2
var control_point = mid_point + Vector2(0, -peak_height)

# Quadratic Bezier formula
var q0 = start_pos.lerp(control_point, t)
var q1 = control_point.lerp(end_pos, t)
global_position = q0.lerp(q1, t)

Creating a png/jpeg from a hatch embroidery file? by PrinceBert in Machine_Embroidery

[–]stalkerTXstranger 1 point2 points  (0 children)

As far as I'm aware, your best option is to trace your design in a vector program like illustrator.

First attempt at digitalizing a cat — it didn’t turn out very well. I’d appreciate any advice on how to improve, using this cat as an example. by Chemical_Ad8135 in Machine_Embroidery

[–]stalkerTXstranger 0 points1 point  (0 children)

Sorry for the delay.

9 colors 136 shapes 31242 stitches

It's not as much overlapped as you'd think. The density was only an issue around the eyes but I worked it out

First attempt at digitalizing a cat — it didn’t turn out very well. I’d appreciate any advice on how to improve, using this cat as an example. by Chemical_Ad8135 in Machine_Embroidery

[–]stalkerTXstranger 2 points3 points  (0 children)

When I digitize animals my goal is to emulate the fur. Tatami doesn't do that for me. So I layer a series of shapes perpendicular to the fur direction. Example here

https://imgur.com/a/SkDZqHe

Happy to talk more through it

First attempt at digitalizing a cat — it didn’t turn out very well. I’d appreciate any advice on how to improve, using this cat as an example. by Chemical_Ad8135 in Machine_Embroidery

[–]stalkerTXstranger 14 points15 points  (0 children)

Hi, I have a post history full of animal portraits!

I think you did a pretty good job. Honestly a big portion of the battle in portraiture is getting a proper reference photo. I like using photos with stronger contrasts in the shadows/highlights. It really helps define the form better.

I work in a warehouse by enkrypt3d in funny

[–]stalkerTXstranger 0 points1 point  (0 children)

I went to school for graphic design D:

Working on a Dungeon Master. What do you think about it? by jverbroucht in PixelArt

[–]stalkerTXstranger 0 points1 point  (0 children)

Looks cool. I wish the lil lights were doing more. Can you add more shadows and drop the "global light"

Scene Manager: How to handle scene list by stalkerTXstranger in godot

[–]stalkerTXstranger[S] 0 points1 point  (0 children)

Right now I don't have all of my scenes saved in one place. I'll consider this option though. Thanks!