scorpion007
@scorpion007
New Member
Joined: Feb 14, 2024
Topics: 29 / Replies: 137
Reply
RE: A good book

Wolfram is fine for a reference, but I don’t know how easy it is to digest as a guide. You probably want some decent books for that. Maybe something …

16 years ago
Forum
Reply
RE: Unique variables

You probably want to use arrays to store variable amounts of user data. Variables are maxscript internals, and probably shouldn’t be exposed to the us…

16 years ago
Forum
Reply
RE: 10 things every max plugin developor should do

Let me just add to that by telling the SDK team to follow those same practises. Does the latest SDK compile cleanly under /W4 yet? The code samples do…

16 years ago
Forum
Reply
RE: accelerating geometry export with Dotnet and c++

Perhaps because when you have many objects you run out of physical memory (since string-streams are memory buffers) and so the system starts paging. P…

16 years ago
Forum
Reply
RE: accelerating geometry export with Dotnet and c++

I’ve found that you can significantly increase performance by buffering your writes to a stringstream, then writing to the file once (or fewer times)….

16 years ago
Forum
Reply
RE: accelerating geometry export with Dotnet and c++

Native code tends to make it go faster (i.e. using the C++ SDK), presumably since you don’t incur overhead from the maxscript interpreter. Other than …

16 years ago
Forum
Topic
Forum
Replies: 0
Views: 22
Reply
RE: Flushing memory between renders

If mental ray isn’t releasing the memory it’s using after renders, and allocating new memory each render, then it’s a horrible memory leak in MR that …

16 years ago
Forum
Reply
RE: Installing AppWizard for SDK

Oh, I agree entirely, the documentation needs a lot of work. Both in terms of accuracy, and more importantly, quantity. Many things are undocumented, …

16 years ago
Forum
Reply
RE: Installing AppWizard for SDK

The other thing that Express lacks is a visual resource editor. Though it’s possible to use a 3rd party one, I guess. You’ll need a resource editor w…

16 years ago
Forum
Reply
RE: Continuous check of keyboard.shiftPressed

I’d suggest against continuously polling – instead, set a flag when the key is pressed, and unset it when it’s released. Polling is bad.

17 years ago
Forum
Reply
RE: Where can I find all the parameters ?

He was probably looking in the max reference, as opposed to the maxscript reference…

17 years ago
Forum
Reply
RE: Max Maps to Mental Ray

Ah, well, in that case it seems he’d need to write a mental ray shader using the MR api, and then follow those samples to provide a front-end for max….

17 years ago
Forum
Reply
RE: Max Maps to Mental Ray

Bercon, have you looked in MAXSDK{HowTo,Samples}\mentalray\ ? There seems to be a number of samples available. I’ve never actually looked at them, ha…

17 years ago
Forum
Reply
RE: Max Maps to Mental Ray

Why PM? I’d prefer a public discussion so others can benefit. The SDK documentation sucks enough as is.

17 years ago
Forum
Page 1 / 12