Search found 18 matches

by Kairu
Thu Mar 12, 2009 2:05 pm
Forum: Beginners Help
Topic: how to enlarge device in windows form
Replies: 6
Views: 424

i tried to remove and then add the new camera, but it still doesnt work,
is that what you mean?? if not can you please tell me how to do it, i dont mind if the code in C++
by Kairu
Thu Mar 12, 2009 7:17 am
Forum: Beginners Help
Topic: how to enlarge device in windows form
Replies: 6
Views: 424

i hv read through the forum, i found out that i need to restart the device
but i cannot do it in windows form,can i?

* note it could be .net wrapper problem since i am using it
can someone please tell me is not wrapper problem :cry:

thanks
by Kairu
Thu Mar 12, 2009 6:25 am
Forum: Beginners Help
Topic: how to enlarge device in windows form
Replies: 6
Views: 424

how to enlarge device in windows form

hi ,

i apply irrlicht in windows form, which is resizeable
but when i tried to enlarge the form , the drawing inside irrlicht become sort of stretched, is there any way to tackle this?

many thanks
by Kairu
Mon Mar 09, 2009 3:24 am
Forum: Beginners Help
Topic: how many index can store with AddMeshSceneNode?
Replies: 4
Views: 274

thank for the help

it works now :D
by Kairu
Sun Mar 08, 2009 2:54 pm
Forum: Beginners Help
Topic: how many index can store with AddMeshSceneNode?
Replies: 4
Views: 274

can i load more than 1 scene node, for example i separate that huge vertices to different2 meshes and load it at the same time.
can i do that?

:cry:

btw i am using irrlicht wrapper for .net, so i guess no newer version available
by Kairu
Sun Mar 08, 2009 12:54 pm
Forum: Beginners Help
Topic: how many index can store with AddMeshSceneNode?
Replies: 4
Views: 274

how many index can store with AddMeshSceneNode?

hi

this problem may not be irrlicht problem , but i receive an error
'arithmetic operation result in an overflow' after my index reach around
20,000 and my vertex around 65,500 .
is it possible to create mesh with this number,or it is other problem?

any help is appreciated

thanks
by Kairu
Wed Feb 25, 2009 12:00 pm
Forum: Bug reports
Topic: [no bug]irrlicht affect multiplication calculation
Replies: 3
Views: 795

[no bug]irrlicht affect multiplication calculation

Dim xyz As Decimal = 123456789 Dim xcv As Decimal = 1.23413323432 Dim ccc As Double = xcv * xyz MsgBox("ccc = " & ccc) which give ccc = 152362128 while should be 152362126.307332 i do realize it maybe problem in irrlicht wrapper , but can someone please check it if it happen in main i...
by Kairu
Thu Feb 19, 2009 12:01 pm
Forum: Beginners Help
Topic: capture picture in irrlicht
Replies: 3
Views: 366

thanks and sorry for wasting post since i haven't go through all the tutorial
thoroughly
by Kairu
Thu Feb 19, 2009 5:50 am
Forum: Beginners Help
Topic: capture picture in irrlicht
Replies: 3
Views: 366

capture picture in irrlicht

hi everyone

i am making sort of 3d graph, in irrlichti may have post earlier about the meshing and i hv solve that. now i want to export the scene to an external picture (jpg,gif) because i need to print it out for reporting. Is there anyway to do it?

thanks alot
by Kairu
Mon Feb 09, 2009 6:37 pm
Forum: Beginners Help
Topic: linking points to create mesh
Replies: 5
Views: 367

http://i110.photobucket.com/albums/n111/Kairi_kairu/xx.jpg the idea is user enter position manually( the point is on the top of the line), and it will not have any order(depend on user), and i want to create mesh to cover all the point, anyway, i m trying to manually create and arrange each triangl...
by Kairu
Mon Feb 09, 2009 3:44 am
Forum: Beginners Help
Topic: linking points to create mesh
Replies: 5
Views: 367

linking points to create mesh

hi, i have a problem, let's say i have a number of scattered points in 3D space, in which i want to create mesh with. is there any irrlicht function that can do this automatically by knowing the location of the points only? note : i know i can create mesh by combining 'triangular list/fan' , but is ...
by Kairu
Sun Nov 16, 2008 2:45 am
Forum: Beginners Help
Topic: [.NetCP] problem with changing addtextbillboardscene text
Replies: 3
Views: 298

Hi Acki,
I think you are right , it is problem with .netcp .
in native irrlicht you still can put the ->setText in the drawing loop without producing the error i mention, right?

arrg what should i do, seem like .netcp forum is abit slow.
by Kairu
Sat Nov 15, 2008 3:05 pm
Forum: Beginners Help
Topic: [.NetCP] problem with changing addtextbillboardscene text
Replies: 3
Views: 298

[.NetCP] problem with changing addtextbillboardscene text

hi everyone i have problem changing text in text billboard, as i change the text using bill = smgr.AddBillboardTextSceneNode(font1, "yahoo", Nothing, New IrrlichtNETCP.Dimension2Df(2, 2), _ New IrrlichtNETCP.Vector3D(0, 0, 0), 2, New IrrlichtNETCP.Color(100, 100, 100, 100), _ New IrrlichtN...
by Kairu
Sat Nov 15, 2008 5:47 am
Forum: Beginners Help
Topic: cannot use BillboardTextSceneNode and draw3dLine together
Replies: 4
Views: 265

Thanks everyone , i finally managed to show both another silly question is ,what wrong if i put Dim material As New Material material.Lighting = False material.Wireframe = False driver.SetMaterial(material) before the ' AddBillboardTextSceneNode ' why it doen't work this way? :?
by Kairu
Fri Nov 14, 2008 4:26 am
Forum: Beginners Help
Topic: cannot use BillboardTextSceneNode and draw3dLine together
Replies: 4
Views: 265

cannot use BillboardTextSceneNode and draw3dLine together

hi everyone i cannot use billboardtext scene and draw3dline line together ,example below i it really cannot is there other way to do it? thanks #include <irrlicht.h> using namespace irr; #pragma comment(lib, "Irrlicht.lib") int main() { // create device IrrlichtDevice* device = createDevic...