And I'm not meaning Bits Per Minute, but Business Process Management.
At first though BPM was overestimated, because the technology is somehow easy to address, but I've learned the value of BPM suites is in involving the non-technical, the business experts into the software design.
I know, the user is always with us during analysis, ...
I have a question on taking a viewer and their projection plane and how exactly to calculate the projected point that should be created.
EX. Viewer at the origin, looking in the negative Z direction. Projection plane at z = -2. Point (-6,1,-4).
I have seen some websites talking about using similar triangles and some that have a matrix ...
glClear(GL_COLOR_BUFFER_BIT);
glMatrixMode(GL_MODELVIEW);
ifstream myFile("Coordinates.txt");
if (!myFile.is_open())
{
cout << "Unable to open file";
exit(1); // terminate with error
}
// Light values and coordinates
float ambientLight[] = { 0.3f, 0.3f, 0.3f, 1.0f };
float diffuseLight[] = { 0.7f, 0.7f, 0.7f, 1.0f };
float specular[...
Question about Eclipse RCP and whole perspective/view/editor design - what is the best way to create application which will display multiple windows on multiple monitors? Tutorials and book I've seen always pack RCP/SWT design into views inside perspective within single application window.
Should one window rule all others or they all s...
I would like to suppress the context menu that shows when right clicking on the perspective tool bar in an rcp application. To clarify, I do want the perspective bar and shortcuts to show, but I do not want the context menu to pop up. All perspective tool bar api seems to be internal.
Thanks.
...
I'm using eclipse for java and python. In the pydev package explorer, I have it set to show closed projects, but hide non-pydev projects. The problem I'm having is that after I close a pydev project, it is hidden in the pydev package explorer, but not in the java perspective package explorer. If I open it again it disappears from the jav...
Hi!
Does someone know how to implement eclipse perspective switcher so that each perspective shows as a separate tab on top of the window?
Menubar should be inside tab content, below tabs, as seen in google chrome.
I saw
Replacing the Perspective-Switcher in RCP apps and
Creating your own Perspective-Switcher - A first try
but it...
I have a problem when i run my eclipse plugin (java) i can see the menu item that i had added, but the UI that should then appear are not displayed.
if i change to the Plug-in Development perspective it run normally.
Is there any dependance on this perspective?
What shall i do to avoid this dependance?
Thanks a lot.
...
Eclipse's normal Java perspective seems to hide Referenced Libraries just fine (in a "Referenced Libraries" folder in your project). Unfortunately, the Java EE perspective does not seem to have this same feature and enabling it is non-intuitive.
Can anyone shed some light on this issue?
...
Say I have a movie clip that when loaded I set it's .z position to 2000 to make it look far off in the background... How in the world can I set it's x and y points with any certainty as to where it will appear on the stage? Is there an equation?
E.g.;
original.x = 200;
original.y = 200;
original.z = 0;
new.z = 2000;
new.x = original....
I run Fedora 11 x86_64 and I use fedora eclipse.
Was compiling code in c++ in my c++ perspective, one of the many I had and than fedora crashed for no reason. No big deal, I just restart my system but when I reopen eclipse for me to continue coding. Eclipse has put me in a weird "resource" perspective.
So, I instinctively got to open m...
Is there a way to turn off this mode? I must have clicked it on accident, and now it's getting really annoying.
I've looked in the preferences and perspectives pane, but didn't see anything. Does anyone know where this option is configured?
...
We have an application in which some views only work when attached to certain perspectives.
We want to remove those views from the Window -> Show View dialog so that users cannot add them to perspectives where they don't work.
Any ideas on how to do this either programmatically or declaratively?
I have tried using <visibleWhen />, but...
Hello Experts,
I have a 2D image and I want to create a anaglyph image for this single 2D image. To do this I need to create Left and Right views. I will considar my 2D image as Left view and I want to create Right View now.
I came to know that the perspective rotation (about Y axis) and perspective skews will give the right image.
I...
I'm currently transforming some objects to make them appear far away using a PerspectiveTransform. This works well, but I have no way of knowing where on the screen the object is displayed. The x and y coordinates are the coordinates of the object if it were at z=0. How can I compute the display coordinates of my component?
...
Hello,
I was wondering if there's anything like Eclipse Perspectives in Visual Studio (2008 or 2010).
For those unfamiliar with Eclipse, here's a definition of Perspectives:
A perspective is a visual container
for a set of views and editors
(parts). These parts exist wholly
within the perspective and are not
shared. A per...
Hi,
For a product we are creating, we want to be able to have the welcome screen display in a perspective (which we are calling "Start Here"). The intro is the only thing that needs to be in that perspective, however, when I try to add our intro view to the perspective, it says that the view already exists in the layout.
I have tried p...
Example: i'd like to always see "CPU Registers" and never see "Scripting Console".
Using Code::Blocks, how can i do this, regardless of the project i use?
...