search for: cubes

Displaying 20 results from an estimated 466 matches for "cubes".

Did you mean: cubex
2007 Apr 12
1
[PATCH] Transparent cube
Hi, Recently i have worked on re-writing beryl's transparent cube, and ported 3d plugin to compiz. I'm attaching a patchset here that includes the transparent cube patches (i'll post the 3d plugin when i fix some problems that didn't happen in beryl). Patching order: btf-ftb.patch, clip-planes.patch, plugin-events.patch, cube-paint-order.patch, transparent-cube.patch. Special
2007 Jun 26
3
[PATCH] Always use mipmaps in cube plugin
Currently, the cube plugin uses mipmapping only when cube is unfolded. When the cube is rotated, mipmaps are not used, which leads to ugly look of textures. The attached patch fixes this. This leads to another kind of artifacts, which are fixable with anisotropic filtering. http://team.pld-linux.org/~wolf/aniso.png The leftmost image is the current state of cube plugin. The center image is with
2007 Jun 02
1
Metadata improvements
I was just thinking, with the metadata files allowing us to make up settings pages, there is a problem that we could address here. It seems ever-so-evident that developers are splitting up plugins into much smaller plugins to reduce the amount of bloat. This is good because it speeds things up but bad for the user in two ways -We've got multiple settings pages which really adress the same
2006 Jun 08
5
more cubes and 3d metaphoric objects...
hi how about having more cubes to fly around in 3d space. though at first thought this might appear unessacary as who needs so many desktops? So i thought, why not have special cubes (as well as the original cube of course) and these special cubes, instead of cubes, be 3d metaphric objects for specific tasks such as a radio,...
2005 Apr 04
1
need any advises for code optimization.
Dear colleagues, I have the following code. This code is to 'filter' the data set. It works on the data frame 'whole' with four numeric columns: a,b,d, and c. Every row in the data frame is considered as a point in 3-D space. Variables a,b, and d are the point's coordinates, and c is its value. This code looks at every point, builds a cube 'centered' at this
2006 Dec 05
2
workspaces/desktops/viewports on top/bottom of cube?
I know this has probably been asked before, but, I'll ask anyways: Workspaces/Desktops/whatever on the top and bottom of the cube, is there any chance this will ever happen? I love how in gnome you can have work spaces in rows/columns, and i tend to have 4-6 workspaces (well 6, but only 4 gets used all of the time, but its nice to have the "buffer" workspaces. since using compiz
2006 Oct 06
2
solving plugin dependency issues
The dependency checking currently provided is clearly not good enough. There's currently two issues with the plugins that exist in the compiz repository. plane plugin conflicts with cube and rotate plugin, zoom plugin should probably work with either cube or plane but currently only loads when cube plugin is used. Adding a { CompPluginRuleBefore, "cube" } to the plane plugin and a
2007 Jun 12
0
[PATCH] Added rotation state.
.../cube.h b/include/cube.h index 00e5b47..4010b6b 100644 --- a/include/cube.h +++ b/include/cube.h @@ -77,6 +77,13 @@ typedef enum _PaintOrder FTB } PaintOrder; +typedef enum _RotationState +{ + RotationNone = 0, + RotationChange, + RotationManual +} RotationState; + typedef struct _CubeScreen { PreparePaintScreenProc preparePaintScreen; DonePaintScreenProc donePaintScreen; @@ -98,6 +105,8 @@ typedef struct _CubeScreen { int xRotations; PaintOrder paintOrder; + RotationState rotationState; + GLfloat distance; GLushort color[3];...
2007 May 27
2
[PATCH] add 'sticky' mode to cube to allow sticky+not-on-bottom windows to stick to the screen when the screen is transformed
I've attached the patch since I don't yet have an easy way to make git format-patch and kmail play nice together. The basic idea is during a rotate/other cube transform, 'sticky' windows stick to the screen instead of being redrawn once per face (its an option, the default is the old behaviour) Consider this, please, essentially an RFC - this particular behaviour was
2015 Aug 18
5
Asterisk 13 chan_sip trunk appending @string to dialled number
Hello, I'm having what seems like a weird issue connecting Asterisk 13 (FreePBX 12) to a Cisco 2811 router via a chan_sip trunk. Whenever I try dialling out via this trunk, something appends '@CUBE' onto the end of the dialled number, as per the following examples; Asterisk log; app_dial.c: Called SIP/test/0429123456 at CUBE chan_sip.c: Got SIP response 500 "Internal Server
2008 Jun 25
2
help with cube3d cube size
I'm using the command below on an open3d() object to create a shaded cube. Changes to myScalingFactor do not effect changes in the size of the cube. What is the correct approach? Mark shade3d(translate3d(cube3d(identityMatrix() * myScalingFactor),-6,1,-1),col="green", alpha = 0.2) -- Mark W. Kimpel MD ** Neuroinformatics ** Dept. of Psychiatry Indiana University School of Medicine
2010 Sep 17
1
Data Cube in R from CSV
...ter), which works so far very fine indeed. Data_m<-melt(Data, id=1:8, na.rm=TRUE) Data_cube<-cast(Data_m, Figure~Company~variable) The question now comes how one can browse through this object, as view gives it out as A.B and gets rather large. Does anyone know a way to save resulting data cubes elegantly, i.e. maybe so that there is a tool where one can scroll through the result, etc. ? I presume there are several researchers here who also find that Excel is not at all levels the best repository for R data, but who don't want to toy around with Linux and for whom Matlab + Stats box i...
2011 Feb 07
1
tri-cube and gaussian weights in loess
>From what I understand, loess in R uses the standard tri-cube function. SAS/INSIGHT offers loess with Gaussian weights. Is there a function in R that does the same? Also, can anyone offer any references comparing properties between tri-cube and Gaussian weights in LOESS? Thanks. - Andr? -- View this message in context:
2008 Apr 25
2
White cube in dx 3d tests
Hi, I just installed DirectX 9.0c on latest Wine according to howto I found here on wine sites. Well the problem is, that in dxdiag 3D tests it shows just very fast spinning (that should be, shouldn't it?) cube, but with no DirectX texture on it, just a white cube. I have nVidia 8400MG. It's working 'cause in Windows I play normally with DX 9 installed. My distro is ArchLinux. Thx
2007 Jul 11
1
Cube Initialization bug in git
Hi, there is a bug in git for cube plugin. Plugin dont set Image defined in gconf as : /apps/compiz/plugins/cube/screen0/options/skydome_image on initialization. If i reset this value manualy, i get my image in skydome. -- Teresa Kalitowska jid: teresa at kvitka.net
2009 Jul 09
5
Best way to export values from a function?
Maybe there is a great website out there or white paper that discusses this but again my Google skills (or lack there of) let me down. I would like to know the best way to export several doubles from a function, where the doubles are not an array. Here is a contrived function similar to my needs: multipleoutput<-function(x) { squared<-x^2 cubed<-x^3 exponentioal<-exp(x)
2006 Nov 11
3
Gnome switcher and gnome windows list
Hello, am I the only one experiencing some bugs with the latest git checkout in the gnome switcher and gnome window list ? When I click on one of the workspaces on gnome's switcher the cube doesn't rotate, but the windows disappear. I don't know how to describe it well, but it seems like the 4 faces of the cube in compiz and my 4 workspaces on gnome-switcher are now totally unrelated
2007 Jul 16
3
Couldn't activate plugin 'rotate'
First, I would like to compliment you all for a great work you put in developing compiz. I have it running for more that a month and it did not crash. Stability is very good. Great work! Today I updated compiz from git tree and found that rotate generates this error: compiz (core) - Error: Couldn't activate plugin 'rotate' Rotate does not function. Any ideas ? I run gconf
2010 May 31
0
Shelf plugin ignores current deformation and places window only on 'cube' face during rotation?
Guys, Here is a potential bug that may need to be looked at. If the scale plugin is used and deformation is set to cylinder, then when the desktop is rotated, the self-sized windows are shown on the face of the cube instead of on the face of the cylinder. The sphere deformation has the same problem. It looks really odd. Here are a couple of screenshots showing this behavior: (1) screenshot of
2007 Jun 08
1
Problem with new cube and scale with ini
I think I have a slight problem with the new hookable plugins and the ini plugin. I haven't looked into it too much, but the plugins use an option to store their abi version. This value is stored so that when the cube/scale plugins are updated it will not be changed and things will not work. Do we need some sort of flag to tell ini not to save these options? I assume that it is OK for