0
votes
2answers
63 views
mem_fun and bind1st problem
I've following class:
class A {
public:
// ctr and etc ...
A* clone(B* container);
};
Now, I've a vector<A*> availableObjs populated already. I want to call clone on eac …
0
votes
4answers
1k views
Direct3D Geometry: Rotation Matrix from Two Vectors
Given two 3D vectors A and B, I need to derive a rotation matrix which rotates from A to B.
This is what I came up with:
Derive cosine from acos(A . B)
Derive sine from asin(|A …
0
votes
2answers
61 views
XSLT Transform XML with Namespaces
I have some XML that I am trying to transform to HTML using XSLT, but I can't get it to work for the life of me. Can someone tell me what I am doing wrong?
XML
<ArrayOfBrokera …
0
votes
0answers
6 views
How to get UIView frame position after transform ?
Hi,
I want to get the current position of a UIView after a transform rotate has been applied to it. How can i do that ?
In the UIView doc i found this about the transform propert …
0
votes
1answer
18 views
Rotate image through Y-axis on web page
What are my options for rotating an image on a web page through the Y-axis? I'm not sure if I even have the terminology right. Is this called a rotate or a transform. Most of the s …
1
vote
5answers
57 views
PHP create 3D Array from Array with 3 Values
Hi,
again me:
following array;
$myArray = array('FOO', 'BAR', 'HELLO');
i need:
$myArray['FOO']['BAR']['HELLO'] = 0;
any ideas?
0
votes
3answers
75 views
How can I alter the values of an transform?
For example, I can access them like this:
self.layer.transform.m32
but I can't assign a value to it, like
self.layer.transform.m32 = 0.3f;
it says invalid assignment. But sho …
0
votes
1answer
22 views
Dynamic XSL file
I have 3 XSL files which have paths in them to something like C:\templates\Test\file.pdf
This path isn't always going to be the same and rather than having it hard coded in the XS …
0
votes
0answers
5 views
OpenESB Nested BPEL?
Hi all,
I have an unusual design goal that I would like to solve using OpenESB. We have a number of files that will be generated by our system to be transferred to another system. …
0
votes
0answers
95 views
WPF / C#: Transforming coordinates from an image control to the image source
I'm trying to learn WPF, so here's a simple question, I hope:
I have a window that contains an Image element bound to a separate data object with user-configurable Stretch propert …
1
vote
2answers
86 views
How can I use the .NET 2.0 XSLT engine from a .NET 1.1 application?
I'm working on a .NET 1.1 assembly that does a number of huge XSL transforms. This is beginning to cause memory problems. I therefore want to use the XSLT engine in the .NET 2.0 fr …
0
votes
1answer
62 views
CSS Transformation
Hello,
how can I change with CSS (-moz-transform) a div that should look like this:
0
votes
1answer
31 views
Something like xslt for presenting plain-text EDI messages?
I often encounter EDI messages in various plain text formats, for example the format:
HEAD[customer,8][date,8][reference,10]
[lineno, 3][product, 8][quantity, 3][currency, 3][pric …
1
vote
1answer
34 views
c#: transform a string targeted for the unix shell use for the windows command prompt.
Here is a sample string I got off a socket stream.
\033[H\033[J\033[1;30HSUPERVISOR MAIN MENU\033[6;5H 0. Exit Exit\033[7;5H 1. Help Display help\033[8;5H 2. Co …
0
votes
3answers
108 views
XSLT to transform list into table with columns determined dynamically
I need this XML,
<list columns="3">
<item>martin</item>
<item>donald</item>
<item>whistler</item>
<item>mother</item> …
