Loading...
Logo
Processing Forum
cm45t3r's Profile
3 Posts
2 Responses
1 Followers

Activity Trend

Last 30 days
Show:
Private Message
    Hello

    Using processing.network core lib, byte arrays greater than 9200 fail during transmission and arrive incomplete. Why is it happening? Does it mean byte arrays must be split in order to be sent?

    Sample code:
    1. /** Server */
    2. import processing.net.*;

    3. Server s;

    4. byte[] b = new byte[9300];

    5. void setup() {
    6.   s = new Server(this, 10002);
    7. }

    8. void draw() {
    9.   s.write(b);
    10. }
    1. /** Client */
    2. import processing.net.*;

    3. Client s;

    4. byte[] b = new byte[9300];

    5. void setup() {
    6.   s = new Client(this, "localhost", 10002);
    7. }

    8. void draw() {
    9.   println(s.readBytes(b));
    10. }
    cm45t3r
    Hey everyone

    It's very urgent for me, if you can help me as soon as possible, I'll really appreciate that and I'll be complete gratefully. I'm coding a scene in 3D using OPENGL renderer. I use some events to rotate camera around point <0, 0, 0> or It's possible to follow a moving object. That's is pure 3D but I need to put some texts in top left corner to show some variables such as object position and speed as well as a ControlP5 ControlGroup at top right corner but I have serious troubles making fixed those texts and controls because these start to rotate with the whole scene and become completely a mess.

    How can I put on top of my PApplet window without using ControlWindowCanvas but within the scene fixed in a place and ignoring rotation and transformations with mouse events?


    cm45t3r
    Hey guys!

    I'm a GSoC student interested in building a third-party library and updates manager within Processing PDE. It would consist of a control and download tool helping developers to access libraries sorted by category or alphabetically and optimizing the development workflow. I got inspired in ideas list from the wiki.

    cm45t3r