Macro Texture Objects/de


Text-x-python.png Texture Objects

Beschreibung
This macro allows you to temporarily put a texture image on selected objects. To remove the textures, simply close and reopen the document.
Autor
yorik
Link
Liste von Macros
How to install macros
How to customize toolbars
Version
1.0
Datum zuletzt geƤndert
2011-10-13


This macro allows you to temporarily put a texture image on selected objects. To remove the textures, simply close and reopen the document.

Textured objects.jpg

import FreeCADGui
from PySide import QtGui
from pivy import coin

# get a jpg filename
jpgfilename = QtGui.QFileDialog.getOpenFileName(QtGui.qApp.activeWindow(),'Open image file','*.jpg')

# apply textures
for obj in FreeCADGui.Selection.getSelection():
    rootnode = obj.ViewObject.RootNode
    tex =  coin.SoTexture2()
    tex.filename = str(jpgfilename[0])
    rootnode.insertChild(tex,1) 
Online version: "http://www.freecadweb.org/wiki/index.php?title=Macro_Texture_Objects/de&oldid=239834"

Navigation menu