Search found 344 matches

by furti
Fri Sep 13, 2019 4:58 am
Forum: Users Showcase
Topic: SlopedPlanesMacro
Replies: 117
Views: 40514

Re: SlopedPlanesMacro

As far as i can see it is still the same as before?
https://gitlab.com/damianCaceres/slopedplanes

A combination of macro and workbench?

But when it is possible to get gitlab repositories into the addon manager, it would be good to get the code of the original author.
by furti
Thu Sep 12, 2019 4:23 pm
Forum: Developers corner
Topic: FreeCAD Renderer Workbench improvements
Replies: 40
Views: 13020

Re: FreeCAD Renderer Workbench improvements

Now I can show you what I had in mind with texturing. This are two cubes in FreeCAD. One with an Texture applied, the other without a texture. freecad_cubes.png When rendering the two cubes with the Render Workbench we get a result like this. There are no textures applied render_cubes_no_texture.png...
by furti
Mon Sep 09, 2019 6:04 pm
Forum: Developers corner
Topic: FreeCAD Renderer Workbench improvements
Replies: 40
Views: 13020

Re: FreeCAD Renderer Workbench improvements

My own suggestion would be to use FreeCAD materials for just as much as possible. They should contain everything we need: different color values, specific values for shaders, texture paths, etc Storing everything inside the material makes things easy that is true. But i think we loose a lot of flex...
by furti
Mon Sep 09, 2019 10:49 am
Forum: Developers corner
Topic: FreeCAD Renderer Workbench improvements
Replies: 40
Views: 13020

Re: FreeCAD Renderer Workbench improvements

Sorry but i don't get the point of your post. It would make things a lot easier for me if it were that simple. What should be simple? And what is complicated right now? I'm not going to write a separate function for all those parameters. When i look at blenders principeld bsdf it has 17 inputs. Wher...
by furti
Mon Sep 09, 2019 5:54 am
Forum: Developers corner
Topic: FreeCAD Renderer Workbench improvements
Replies: 40
Views: 13020

Re: FreeCAD Renderer Workbench improvements

At the moment, I'm thinking about using a wrapper class around the material dictionary Using the material dictionary directly will not work. Not everything is inside the core material. Textures for example are handled by a external workbench. So we need a dedicated RenderMaterial that can have more...
by furti
Mon Sep 09, 2019 5:04 am
Forum: Developers corner
Topic: FreeCAD Renderer Workbench improvements
Replies: 40
Views: 13020

Re: FreeCAD Renderer Workbench improvements

Having a dict to store the data in the class is also fine for me. But i would not use a "getFloat("xxx")" approach but instead add dedicated "getXxx()" methods like "getRoughness()" "getTextureFile()" and so on. Because this gives a dedicated API. Ot...
by furti
Sun Sep 08, 2019 1:23 pm
Forum: Developers corner
Topic: FreeCAD Renderer Workbench improvements
Replies: 40
Views: 13020

Re: FreeCAD Renderer Workbench improvements

But I really don't understand why you pinged me for comments after you've issued a PR instead of before As i wrote in the PR it is intented for discussion. Its easier to discuss actual code than simply talk about it. :) Github makes it possible to write comments Into the code and stuff like this. T...
by furti
Sun Sep 08, 2019 7:45 am
Forum: Developers corner
Topic: FreeCAD Renderer Workbench improvements
Replies: 40
Views: 13020

FreeCAD Renderer Workbench improvements

I created a pull request that refactors some things in the Renderer Workbench in preparation to incorporate textures from the ArchTexture workbench. The pull request is here and should be the base for discussions if this goes in the right direction. https://github.com/FreeCAD/FreeCAD-render/pull/13 ...
by furti
Sat Sep 07, 2019 4:16 pm
Forum: Help on using FreeCAD
Topic: Draft and Arch Texture - textures not showing
Replies: 10
Views: 2254

Re: Draft and Arch Texture - textures not showing

You have to right click in the property editor :)
by furti
Fri Sep 06, 2019 2:35 pm
Forum: Help on using FreeCAD
Topic: Draft and Arch Texture - textures not showing
Replies: 10
Views: 2254

Re: Draft and Arch Texture - textures not showing

The color of the object changes but the texture is not visible. For me this sounds like a graphics card problem. Maybe setting QT_OPENGL works? https://forum.freecadweb.org/viewtopic.php?f=4&t=36087&start=10#p326098 For me it is completely unclear how I have to proceed to assign a texture t...