Jump to content

3D Graphics in AutoIt


nfwu
 Share

Recommended Posts

push....nfwu could you answer if this is something like you searched?

Not really... I need it at least 1/30 of a second.

(if possible, 1/60 would be nice.)

Anybody knows if this works?:

$ClearScreen[800][600]
$ScreenBuffer = $ClearScreen

#)

Link to comment
Share on other sites

1) Are you using beta?

2) Try the compilied file. Does that work?

3) _Radian is found in Math.au3. Did you install AutoIt correctly?

#)

Link to comment
Share on other sites

1) Are you using beta?

2) Try the compilied file. Does that work?

3) _Radian is found in Math.au3. Did you install AutoIt correctly?

#)

nfwu, i found a method, but the source is 97mb big and the exefile 10mb :)

WriteDown()

Func WriteDown($p_color="0x000000")
FileWriteLine( "CalcScreen.au3" , "Func CalcScreen()" )
FileWriteLine( "CalcScreen.au3" , "; - CalcScreen :")
FileWriteLine( "CalcScreen.au3" , "; Dim CalcScreenMax :")
FileWriteLine( "CalcScreen.au3" , "Dim $CalcScreen[1601][1801]")
FileWriteLine( "CalcScreen.au3" , "; - Cleaning Screen, up to 3000")
$nput = ""
For $H = 1 To 1600
    For $W = 1 To 1800
        $put = "$CalcScreen["&$H&"]["&$W&"] = "&$p_color &@CRLF
        $nput &= $put
        
        ToolTip( $W & " " & $H )
    Next
Next
ClipPut($nput)
FileWriteLine( "CalcScreen.au3" , "EndFunc" )
EndFunc

otherwhise you need multithreaaaaaad :(

My UDF's : Startet on : 06.06.2006_CaseSearchOrReplaceStr();~> Searches OR Replaces a String,;~> With or Without Casesensivity
Link to comment
Share on other sites

Soz if stupid question but is there a way to define a pixel to a color or to make a line in a GUI window or at the top over all?

would't be bother to make a new topic when its related...

Regards

Edited by nocow
Link to comment
Share on other sites

Please note: The Scripts and Scraps forum is not a general support forum!

Bact to your question: Yes. Refer to the help file:

GUICtrlSetGraphic

GUICtrlCreateGraphic

#)

Link to comment
Share on other sites

  • 7 years later...

This thread is 8 years old I'm not surprised the link is dead.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...