Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

8
votes
1answer
340 views

What is an “orthogonal linked list”?

I understand what a linked list is, but my question is what is an orthogonal linked list? I searched on the web but couldn't find any helpful information. I am studying liked list in C++, if there ...
3
votes
1answer
44 views

Permit overlapping edges in graphviz

Background Use graphviz to create an Organizational Chart. Problem By default dot creates the following diagram: The desired output combines the edges so that they overlap, with elbow ...
3
votes
3answers
2k views

Is Java orthogonal?

I am wondering if Java is orthogonal or not, and if yes, then which are its features that make it orthogonal. How can you determine if a language is orthogonal or not? For example, I found on some ...
2
votes
1answer
266 views

Software Testing— orthagonal array Testing algorithm

Can anyone provide an optimized algorithm for orthogonal array testing. ? or any link to any relevant page will be also helpful.. thanks.
2
votes
2answers
438 views

How to pass a delegate as an argument to subscribe as an event handler?

I have an external application that provides an event - StkQuit. I subscribe to this event in a static class that handles all communication between my application and the external application. I would ...
1
vote
1answer
92 views

Randomly Generate Orthogonal 3x3 Matrix

I'm looking to do some complex part analysis within Seimens NX. I'm looking to implement the double caliper method of measuring a model in order to find the minimum possible box that it could possibly ...
1
vote
1answer
297 views

XNA: Orthographic Projection that matches Screen Coordinates

I am using XNA with SpriteBatch and custom drawn verticies in parallel. The goal is to have the same coordinate system for both techniques. That means I need a projection matrix that maps to screen ...
1
vote
1answer
480 views

MATLAB rotation problem

Hey all, I need rotated versions of a 3D shepp logan phantom and it's corresponding rotation matrix. Now here's the thing, I use a function called phantom3d to create the 3D SLP, the function allows ...
1
vote
3answers
137 views

What explains the term orthogonal in a more non-nerd fashion?

For example: Cardinality and optionality are orthogonal properties of a relationship. You can specify that a relationship is optional, even if you have specified upper and/or lower ...
1
vote
2answers
82 views

Orthogonailty with php development

Good morning, I am reading the "Pragmatic Programmer", I am at the section were they talk about "Orthogonailty" and the approach to take when coding. I was wondering if you can implement the ...
1
vote
3answers
283 views

Unittest++: test for multiple possible values

i am currently implementing a simple ray tracer in c++. I have a class named OrthonormalBasis, which generates three orthogonal unit vectors from one or two specified vectors, for example: void ...
1
vote
2answers
4k views

Formula for a orthogonal projection matrix?

I've been looking around a bit and can't seem to find just what I"m looking for. I've found "canonical formulas," but what's the best way to use these? Do I have to scale every single vertex down? Or ...
0
votes
0answers
33 views

How to verify/prove orthogonality of a programming language? [migrated]

I know the concept of orthogonality, but from a programming language point of view, is there a way to verify/prove it? For instance in C#, one can use public or static for a method signature. You can ...
0
votes
0answers
52 views

Perspective vs. orthogonal positioning Glscene, Camera

i have a realy huge problem (for me). I display some tooth im my 3d Glscene World. The positions of the tooth are saved in an extra db and the program load this positions at start of the 3d-scene. ...
0
votes
1answer
49 views

Matlab: Repmat and orthogonal vectors

I have three vectors which are orthogonal b_vect = [1 2] L_vect = [10 20 30] f_vect = [100 200 300] and I would like to do element-for element-operations. I use repmat to duplicate the ...
0
votes
2answers
92 views

How do I know if two vectors are near parallel

I am having some trouble finding parallel vectors because of floating point precision. How can I determine if the vectors are parallel with some tolerance? I also need a check for orthogonality with ...
0
votes
1answer
193 views

Taguchi Method Programming Example

I've been asked to research some programming related to the "Taguchi Method", especially as it relates to Multi-variant testing. This is one of the first subjects I've tried to research that I've ...
0
votes
0answers
66 views

Rendering Chai3D camera to view orthogonal?

I have been researching, and with the Chai3D built in functions for the camera, I cannot find a good way to make the view orthogonal. I am having trouble moving an object in the foreground at ...
0
votes
0answers
136 views

What would be some orthogonal or non-orthogonal features in Python? [closed]

What would be some orthogonal or non-orthogonal features in Python? Can you give some examples?
0
votes
1answer
398 views

drawing hierarchical tree with orthogonal lines ( HV-Drawing – Binary Tree)

Hi I need to work on drawing a hierarchical tree structure (HV-Drawing – Binary Tree) with orthogonal lines(straight rectangular connecting lines) between root and children ( like the following: ...
0
votes
1answer
438 views

Correct way to handle 2D z-indexing in a 3D scene (DirectX)

I need to achieve the following: Two 2D quads appear as though they are stacked one on top of the other (like two halves of the same texture) but are in fact seperated on the z axis by n coordinates. ...