Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2005 |
Jan
(1) |
Feb
|
Mar
(2) |
Apr
(1) |
May
(3) |
Jun
(3) |
Jul
|
Aug
|
Sep
(2) |
Oct
(3) |
Nov
|
Dec
(7) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(48) |
Jun
(14) |
Jul
(9) |
Aug
(5) |
Sep
|
Oct
(3) |
Nov
(7) |
Dec
(6) |
2007 |
Jan
(2) |
Feb
(2) |
Mar
(7) |
Apr
(15) |
May
(12) |
Jun
(7) |
Jul
(24) |
Aug
|
Sep
(2) |
Oct
(2) |
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
(1) |
Apr
(20) |
May
(3) |
Jun
(4) |
Jul
(10) |
Aug
(21) |
Sep
(1) |
Oct
(5) |
Nov
|
Dec
(3) |
2009 |
Jan
(7) |
Feb
(4) |
Mar
(7) |
Apr
(1) |
May
|
Jun
(1) |
Jul
|
Aug
(2) |
Sep
(3) |
Oct
(4) |
Nov
|
Dec
(7) |
2010 |
Jan
(2) |
Feb
(6) |
Mar
|
Apr
(2) |
May
(7) |
Jun
(4) |
Jul
|
Aug
(6) |
Sep
(6) |
Oct
(4) |
Nov
(7) |
Dec
(2) |
2011 |
Jan
(1) |
Feb
|
Mar
(1) |
Apr
(8) |
May
|
Jun
(3) |
Jul
(3) |
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2012 |
Jan
(1) |
Feb
(9) |
Mar
(8) |
Apr
(7) |
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
(1) |
Dec
|
2013 |
Jan
(3) |
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(7) |
Nov
(3) |
Dec
|
2014 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
(2) |
Jul
(9) |
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2016 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
|
1
(2) |
2
|
3
(1) |
4
(2) |
5
(2) |
6
(1) |
7
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
|
From: Irit Sella <iritsella@gm...> - 2011-04-04 13:27:23
|
Hi, I'd like to post to the mailing list. My email is: irit.sella@... Thanks! Irit On Mon, Apr 4, 2011 at 4:22 PM, <cgkit-user-request@...>wrote: > Welcome to the cgkit-user@... mailing list! > > To post to this list, send your email to: > > cgkit-user@... > > General information about the mailing list is at: > > https://lists.sourceforge.net/lists/listinfo/cgkit-user > > If you ever want to unsubscribe or change your options (eg, switch to > or from digest mode, change your password, etc.), visit your > subscription page at: > > > https://lists.sourceforge.net/lists/options/cgkit-user/irit.sella%40gmail.com > > > You can also make such adjustments via email by sending a message to: > > cgkit-user-request@... > > with the word `help' in the subject or body (don't include the > quotes), and you will get back a message with instructions. > > You must know your password to change your options (including changing > the password, itself) or to unsubscribe. It is: > > ecogepep > > Normally, Mailman will remind you of your lists.sourceforge.net > mailing list passwords once every month, although you can disable this > if you prefer. This reminder will also include instructions on how to > unsubscribe or change your account options. There is also a button on > your options page that will email your current password to you. > |
From: Nathaniel Albright <nathanieljla@gm...> - 2011-04-04 02:15:15
|
Thanks for the reply Matthias, After sleeping on this debacle it had dawned on me that the transpose at the end (then asking for the rows) was pointless. At the same time I hadn't caught that I was copying the mat4, just to get another copy again with the transpose(). Good catch. Sadly, I had originally expected it would take a 10 - 20 minutes to set up a test scene and learn how to get the data in and out of Maya...instead it took the day. *sigh* How could something so simple become one of my more frustrating scripting experiences. I think this is right up there with my pain of doing a custom grid control in wxPython, but that's another story :) Nathaniel On Sun, Apr 3, 2011 at 12:59 PM, Matthias Baas <matthias.baas@...>wrote: > Hi Nathaniel, > > it seems you got it all working now, but just to recap: > Whenever you deal with separate packages that use matrices to store > transformations, you need to check what their conventions are with > respect to how points are transformed. You can transform them by either > multiplying them to the left or the right of the matrix: > > 1) Maya: transformedPoint = point*Matrix > (in this case, the translation part is the 4th *row* of the matrix) > > 2) cgkit: transformedPoint = Matrix*point > (in this case, the translation part is the 4th *column* of the matrix) > > It's straightforward to switch from one convention to the other, you > just have to transpose the matrix. > > If those packages store matrices as flat lists instead of dedicated > matrix objects, then there's an additional stumbling block. You need to > know the order of the values, they are either in column-major or > row-major order (which has nothing to do with the above convention about > the order of the multiplication). If you get this wrong, you end up > having a transposed matrix. If you get both things wrong (the above > transformation convention and the value ordering), you are actually fine > again as one mistake cancels out the other one (which may actually > further increase the confusion). > > > def cgkit_matrix( xform_list ): > > """ > > takes a 16 element list (assumed to be the result of a xform query) > > and returns a cgkit.cgtypes.mat4 in proper form > > """ > > matrix = cgkit.cgtypes.mat4( xform_list ) > > matrix = matrix.transpose( ) > > return matrix > > That looks correct to me. > > > def maya_xform_list( matrix ): > > """ > > converts a cgkit.cgtypes.mat4 into a row list that can be used with > > mays.cmds.xform. > > The original matrix is left unaltered. > > """ > > #create a copy of the original matrix > > matrix = cgkit.cgtypes.mat4( matrix ) > > matrix = matrix.transpose( ) > > return matrix.toList( rowmajor = True ) > > The transpose() method returns a copy anyway, so there's no need to copy > the matrix at the beginning. > Also note that this function could even be far simpler, you could just > return matrix.toList() (using the default column-major order) in which > case the transpose will be done implicitly by toList(). > > - Matthias - > > > ------------------------------------------------------------------------------ > Create and publish websites with WebMatrix > Use the most popular FREE web apps or write code yourself; > WebMatrix provides all the features you need to develop and > publish your website. http://p.sf.net/sfu/ms-webmatrix-sf > _______________________________________________ > cgkit-user mailing list > cgkit-user@... > https://lists.sourceforge.net/lists/listinfo/cgkit-user > |