Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - itsmeveno

#1
Support / Screenshots
March 10, 2019, 09:57:39 AM
Good day how to take screenshots of my project i'm using glsurfaceview.
#2
Support / Re: Box sides action
March 03, 2019, 12:27:40 PM
World space
#3
Support / Re: Box sides action
February 24, 2019, 03:56:07 AM
Thanks for that its working another problem if how to get the dimension of my box
#4
Support / Re: Box sides action
February 22, 2019, 12:00:38 AM
I made the picking what i did is i make a box using Primitives plane. but my problem now is the rotation of my box when i rotate every single plane the box was destroyed
#5
Support / Re: Box sides action
February 16, 2019, 11:44:49 AM
How can i set the sides of the box. By the way im using Extendedprimitive box. Like how can i identify if that sides of the box is picked.
#6
Support / Re: Box sides action
February 16, 2019, 09:30:23 AM
I do my best to understand the pick but it can't pick the sides base on the documentation. please help any more explanation for me to understand on how it going to detect those sides.
#7
Support / Re: Box sides action
February 09, 2019, 08:59:11 AM
The codes is for desktop application my project is an android app.
#8
Support / Re: Box sides action
February 06, 2019, 11:56:24 AM
Thank you for that but when i try the codes it doesn't pick the faces/sides of a box.
What i want to do if to make every action of the sides of my box.
#9
Support / Re: Scale X and Y axis
February 05, 2019, 04:25:57 AM
Thanks for this.
#10
Support / Box sides action
February 05, 2019, 12:13:35 AM
Good day any idea on how to give an action of the sides of a box. By clicking or dragging the sides.
Like for example i drag the top sides. going up. it scale the box vertically.

Thanks :) :) :)
#11
Support / Re: Scale X and Y axis
February 01, 2019, 01:49:33 AM
it give me this error. FATAL EXCEPTION: main.
#12
Support / Scale X and Y axis
January 30, 2019, 05:08:18 PM
Good day i would like to ask if it is possible to resize the object by y axis or x axis runtime.

Like for example i drag the left side of the cube then the x-axis will expand. something like that.

Any idea or source code.
btw i already use this code.

public void setSize(float scalex, float scaley)
    {
        demoControl = new ResizerMod(scalex, scaley,1);
        planeMesh.setVertexController(demoControl, IVertexController.PRESERVE_SOURCE_MESH);
        planeMesh.applyVertexController();
        planeMesh.removeVertexController();
    }
    private static class ResizerMod extends GenericVertexController {
        private static final long serialVersionUID = 1L;

        float XFactor =1;
        float YFactor =1;
        float ZFactor =1;

        public ResizerMod(float xFactor, float yFactor, float zFactor)
        {
            this.XFactor = xFactor;
            this.YFactor = yFactor;
            this.ZFactor = zFactor;
        }
        public void apply() {
            SimpleVector[] s = getSourceMesh();
            SimpleVector[] d = getDestinationMesh();
            Log.i("vertex", "XFactor="+s[1] + s[2] +" YFactor="+d);
            for (int i = 0; i < s.length; i++) {

                //d.z = s.z   - (10f * ((float) Math.sin(s.x / 50f) + (float) Math.cos(s.y / 50f)));

                Log.i("vertex", "old vertex="+i+" x="+ d.x);
                Log.i("vertex", "old vertex="+i+" y="+ d.y);
                Log.i("vertex", "old vertex="+i+" z="+ d.z);

                d.x = s.x*XFactor;
                d.y = s.y*YFactor;
                d.z = s.z*ZFactor;

                Log.i("vertex", "vertex="+i+" x="+ d.x);
                Log.i("vertex", "vertex="+i+" y="+ d.y);
                Log.i("vertex", "vertex="+i+" z="+ d.z);
            }
        }
    }

but the problem is i can only resize the object at once. please help.
#13
Support / Screenshots
January 22, 2019, 04:50:40 AM
Good day!
How can i remove framebuffer runtime.

I made an app that my button is framebuffer.blit() and i want to screenshots the screen without that button.
can i remove it? if not
any idea about creating a user interface in jpct without using android view.
#14
Good day!

I want to make transparent the surfaceview to view the image background behind of it.
How i can do that i did a lot of research but i always search the setZOrderOnTop the surfaceview make transparent but it overlay the ather view.