Hello!
Can someone explain me why verlet integration is better then euler ? And why rk4 better then verlet ? I don't understand why it is better method :/
hello i want to develop AI car(opponent) in car race game what should be my direction to develop them with less complexity because i don't have any idea. because the player car is moving on the scrolling track plz suggest me should i have to use relative motion or way point concept but that should also be change on the scrolling track (i.e. player car movement)
Hello everyone.
I need to bind an enum to a combobox that is inside a DataGridTemplateColumn, but only some of the options that the enum has.
Example:
Enum options:
Unknow, One, Two, Three, Four, All
Bindable ones: One, Two, Three, Four
Any way to do this?
Many thanks.
Best regards
Hello there,
I have an iMac with ATI Radeon 2600HD which supports Fragment_shader_arb. But whenever I use that function, it crashes the program. Ironically, it works on a windows installation in the same machine without any problems. I'm running OS X 10.6.2;
Can anyone please help me out!
P.S. Vertex shaders work fine without any problem.
Thank you!
Hello,
is it possible to specify that a NSMutableArray can only contain a certain type of objects.
For example, if I want to store only this kind of objects :
@interface MyObject : NSObject {
UInt8 value;
}
In order to be able to use the instance variable like this :
- (void)myMethod:(NSMutableArray *)myArray{
for (id myObject in myArray){
[self otherMethod:myObject.value];
}
}
because I'm getting this error :
request for member 'value' in something not a structure or union
Thank you for your help
Hello,
Knowing that we can use Divide-and-Conquer algorithm to compute large exponents, for exemple 2 exp 100 = 2 exp(50) * 2 exp(50), which is quite more efficient, is this method efficient using roots ? For exemple 2 exp (1/100) = (2 exp(1/50)) exp(1/50) ?
In other words, I'm wondering if (n exp(1/x)) is more efficient to (n exp(1/y)) for x < y and where x and y are integers.
Hello All,
This is general question. What would one take in considiration when designing a new application? ( Why choose a certain technology , Why independance between functions , Why Modularity ...)
Discuss
Hello All:
I'd like to know how to open the camera inside of a pre-defined frame (not the entire screen). When the view loads, I have a box, and inside it, I want to display what the camera sees. I don't want to snap a picture, just basically use the camera as a viewfinder. I have searched this site and have not yet found what I'm looking for. Please help.
Thanks!
Thomas
Hello,
I want to temporarily change fonts in latex, to arev. Usually, this would work, as described here:
{\fontencoding{T1}\fontfamily{arev} the font is temporarily changed}
it doesnt though, and I think it has to do with the fact that arev is a T1 font. I think I need to specify more?
Thanks in advance for any advice, I appreciate it!
Georg Raba
Hello,
I am returning the variable I am creating in a using statement inside the using statement (sounds funny):
public DataTable foo ()
{
using (DataTable properties = new DataTable())
{
// do something
return properties;
}
}
Will this Dispose the properties variable??
After doing this am still getting this Warning:
Warning 34 CA2000 : Microsoft.Reliability : In method 'test.test', call System.IDisposable.Dispose on object 'properties' before all references to it are out of scope.
Any Ideas?
Thanks
Hello everybody!
I've been wondering whether is possible or not to pass a function as parameter in PHP; I want something like when you're programming in JS:
object.exampleMethod(function(){
// some stuff to execute
});
What I want is to execute that function somewhere in exampleMethod. Is that possible in PHP?
Thank you so much.
Hello,
Could anyone point exactly where MSDN says thet every user stored procedure returns 0 by default if no error happens? In other words, could I be sure that example code given below when being a stored procedure
IF someStatement
BEGIN
RETURN 1
END
should always return zero if someStatement is false and no error occurs?
I know that it actually works this way, but I failed to find any explicit statement about this from Microsoft.
Hello! I apologize if this has been posted before. Compiling under two separate compilers, BCC 5.5 and LCC, yields 0 and 1.
#include <stdio.h>
int main(void)
{
int i = 0, array[2] = {0, 0};
array[i] = ++i;
printf("%d\n", array[1]);
}
Am I to assume not all compilers evaluate expressions within an array from right to left?
Hello everyone,
I'm in the design phase for a desktop-based application. Because of the nature of this particular application, I believe it would benefit greatly from a web-based approach (i.e., allowing a user to interface with the application through a browser running in kiosk mode) in order to leverage the simplicity of HTML/CSS/JS and the availability of many great JS interface plugins. Does taking this approach (rather than coding in a native or cross-platform graphics library) come with any gotchas?
Hello,
I'm writing GUI app in haskell.
I use sqlite to gather data and want to use grid in wxHASKELL TO
present data in app. Everything is all right but I want to have
possibility to add rows from haskell app. I achieved that but when I
refresh it It expands and covers other controls.
To make things short how can I set maximum size of control, and if
there are more rows in that grid then make scroll appear ?
thanks for any help,
bye
Hello, i can't find demo of structure tags <header>, <footer>, <articles> ...
In this demo, each of tags highlighted.
Please, help me to find this demo
Hello.
I have this error appearing:
Parse error: syntax error, unexpected T_STRING in /home/ondesign/public_html/ywamleicester.org/index.html on line 1
Which I think is a php error. However, the site in question is an out of the box iweb design with no php in it.
I have no idea what could be doing it.
Hello everybody,
i am developing a GPS application in which i needs to track the speed of the device/iphone ,i am using the CLCorelocation API's Locate me referral code provided by Apple my problem is that the LocationManager does not updates the current latitude and longitudes thus i am unable to calculate the distance as well as the speed of the device/iphone.
Any kinds of suggestions/code will be highly appreciated please suggest me if i can do something with the Mapkit framework introduced in the sdk 3.0.
thanks in advance
Hello
i want to create a python application that consume a php nusoap webservice
and get the result and save it in database
what is the best way to do that using python
regards
Hello all
I have installed the LogoTool module, but I only want it enabled in the custom theme used for the front end site, not for the Garland theme used in the administrative back end. How do I do that?
Best regards, Egil.
Hello,
I need some like this:
module One
def test; puts 'Test One'; end
end
module Two
def test; puts 'Test Two'; end
end
class Foo
include One
include Two
include One
end
In this case I need as a result 'Test One' but obviously it returns 'Test Two'. I need a clean simple way for re-include my module.
Any suggestion?
Thanks!
Hello I have a window application where i want to make functionality of video downloading but i am not getting correct solution for this.
I tried one code project code and lot of other code that i got from google.
can any buddy help me for this problem.
Hello guys, I'm trying to put some style in the input=file aka uploader and I'm having a hard time with it, is there some NON FLASH solution (maybe jquery or even plain javascript)?