BlenderAddons icon indicating copy to clipboard operation
BlenderAddons copied to clipboard

Found your code on a business school website

Open zantiu opened this issue 4 years ago • 7 comments

http://www.aspirebarcelona.eu/assets/short-term-brochures/basics%20of%20software%20engineering.pdf

And also on an banking & fintech event poster.

zantiu avatar Jul 30 '21 09:07 zantiu

nice! Thanks for letting me know :)

fornof avatar Jul 31 '21 01:07 fornof

@fornof are you the original author of the stock picture? If not, then your code on Github does not show any software license, so it is all right reserved by default.

tardyp avatar Sep 08 '21 08:09 tardyp

are you the original author of the stock picture?

looks like you are not. The author of those visuals can be found via google reverse image.

https://www.dreamstime.com/stock-illustration-programming-code-abstract-technology-background-software-deve-developer-computer-script-image96434780

tardyp avatar Sep 08 '21 10:09 tardyp

I beg your pardon, but I am the author of the code base, and have git log dating back to 2014 (7 years ago) to prove it: https://github.com/fornof/BlenderAddons/commit/845ff940a08b6ae1b883dca7f6a6cf297a0b1475 There's no joy in suing, which is why I don't.

fornof avatar Sep 08 '21 22:09 fornof

Sorry, I didn't meant you weren't the author of the code, but you are not the author of the stock photo that are around (if you were then there would be no problem).

So that means that author is actually doing copyright infringement, probably not in bad faith. I think this would be preferable if you put a liberal licence on this code so that people that use images from monsitj are not committing copyright infringement without realising.

You could put https://creativecommons.org/share-your-work/public-domain/cc0/ or even https://en.wikipedia.org/wiki/WTFPL those are very liberal and would reaffirm what I can see informally in all those issues, that you are pretty happy to see artists reuse your work as an example of beautiful code :)

tardyp avatar Sep 09 '21 08:09 tardyp

I think that image is a built-in image of PowerPoint now. If I title a PowerPoint slide as "code", this image shows up as a suggested background image in "design ideas". I already see it several times from internal presentations by my coworkers. Congrats for the visibility!

I feel the following part can be simplified a bit.

if _operation == "MIRROR_X":
    mirror_mod.use_x = True
    mirror_mod.use_y = False
    mirror_mod.use_z = False
elif _operation == "MIRROR_Y":
    mirror_mod.use_x = False
    mirror_mod.use_y = True
    mirror_mod.use_z = False
elif _operation == "MIRROR_Z":
    mirror_mod.use_x = False
    mirror_mod.use_y = False
    mirror_mod.use_z = True

However, it won't change the stock image no matter how we improve it.

nanma80 avatar Nov 04 '21 23:11 nanma80

Turned up here.

How about this:

mirror_mod.use_x = _operation == "MIRROR_X"
mirror_mod.use_y = _operation == "MIRROR_Y"
mirror_mod.use_z = _operation == "MIRROR_Z"

ldo avatar Mar 14 '23 06:03 ldo