Archived post by cakesson

class GifPlayer(PySide.QtGui.QWidget): def __init__(self, gifFile, parent=None): PySide.QtGui.QWidget.__init__(self, parent) self._gif = gifFile # set up the movie screen on a label self.movie_screen = PySide.QtGui.QLabel() # expand and center the label # self.movie_screen.setSizePolicy(PySide.QtGui.QSizePolicy.Expanding, # PySide.QtGui.QSizePolicy.Expanding) # self.movie_screen.setAlignment(PySide.QtCore.Qt.AlignCenter) main_layout = PySide.QtGui.QVBoxLayout() main_layout.addWidget(self.movie_screen) self.setLayout(main_layout) # use an animated gif file you have in the working folder # or give the full file path self.movie = PySide.QtGui.QMovie(self._gif, PySide.QtCore.QByteArray(), self) self.movie.setCacheMode(PySide.QtGui.QMovie.CacheAll) self.movie.setSpeed(100) self.movie_screen.setMovie(self.movie) self.movie.start()

We used to have a gif fail player show up on export failures 😃

Archived post by Nick D

heck, redshift issue. Redshifts RenderView is producing different results to images rendered to disk or mplay.

its like the displacment/bump changes. These area both gamma 2.2

what the heck does this mean `Found conflicting usage types for vertex stream ‘ns’! Original usage is ‘Unspecified’, while another shader is using it as ‘Unspecified’. Please duplicate or use a different vertex stream and assign separately.`

hitting up the forums: www.redshift3d.com/forums/viewthread/26243/

fixed it, see that link for more info

Attachments in this post:
http://fx-td.com/houdiniandchill/wp-content/uploads/discord/20191907/04/19/unknown.png

Archived post by profbetis

p simple actually This is a volume wrangle. First input is your volume for storing the field, second input is your geometry that has a magnetic value (-1 to 1) point attribute “`c vector mf = 0;
for( int i=0; iv@magfield = mf;“`

trying to convert to openCL but running into dumb problems with how to write to vector volumes

of course, it also doesn’t take into account spatial density of points, so if you double your point count you will get double the magnetic field values

Archived post by ajk48n

yeah, thanks I’ll check it out. This is literally just my prep so I begin setting up cloth tutorials

at the risk of looking inefficient, but for future posterity when I forget how I did this, here is a bit of code to transition between multiple clips in an agent

“`int clipNum = 3; float blend = chf(‘blend’); float b[] = array(0,0,0);
for (int i=0;i

Archived post by jake rice

fun hot tip, inside your $HFS/ocl/compute folder, the team at sesi has included both a simple sparse matrix vector multiplication function as well as a bunch of opencl vector functions, including parallel reduction for large dot product operations 😮

definitely worth taking a look at

Archived post by JeffLMnT

I just like to wrap everything up to visually make sense to me

Here’s another setup that is more closer to the maps – also lets you repeat the string while keeping it centre aligned

Attachments in this post:
http://fx-td.com/houdiniandchill/wp-content/uploads/discord/20195006/12/19/char_align_along_curve_focused.hiplc
http://fx-td.com/houdiniandchill/wp-content/uploads/discord/20195006/12/19/test.JPG