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.


Messages - lomalena

Pages: [1]
1
QB64 Discussion / Re: Building Design
« on: June 23, 2020, 11:40:43 am »
Thank you so much for replies!

I decided to use calcplot 3d (https://www.monroecc.edu/faculty/paulseeburger/calcnsf/CalcPlot3D/)  and I'm gonna try to find the equation of the curve.
http://www.ydacenter.com.tr/
I find this YDA center project. Which has (x1,y1) 166,-166 (x2,y2) 67,0 (x3,y3)90,90
So I will find the curve and than I will try to make a translation function.

We will see :D

I'm still okay with any kind of help :D

2
QB64 Discussion / Re: Building Design
« on: June 20, 2020, 06:28:48 pm »
Or it doesn't need to be a tower.
https://www.archdaily.com/904639/liverpool-paseo-queretaro-facade-miguel-de-la-torre
this can be an example too

3
QB64 Discussion / Building Design
« on: June 20, 2020, 06:02:00 pm »
Hello,

I am trying to use qb64 program with architecture.
Can you show how I can model building with a simple example?

I thought it might be an easy example, so I chose the sears tower.

How can I start? Thank you.

4
QB64 Discussion / Math Question With Autocad Drawing Included
« on: April 11, 2020, 09:11:42 am »
So, I have R = 3 - Cos (t)  equation.
I want this equation use as a base of a conic
How can I write this?


5
QB64 Discussion / Re: Mathematical Problems
« on: February 29, 2020, 05:58:15 pm »
Thank you so much :D

I think I understand now. I will try to make it more simple maybe :D Thank you so much!

6
QB64 Discussion / Mathematical Problems
« on: February 29, 2020, 08:05:09 am »
Hello, I'm new in qb64 and we are using this in our master's degree classes. Since I'm an architect and programming is very hard for me to understand.

I have a question that I cannot figure it out.

For example, I have a function lets say f(x)=sin(x)+5
I want to divide that function into random 4 pieces and I want to find the coordinates of the points which cut the function.

I started like this but I don't know how to solve it.

Can someone plz help? Thank you.

OPTION _EXPLICIT
DIM m AS INTEGER
INPUT "how many pieces should we divide", m
DIM n AS INTEGER

FUNCTION fx (x AS DOUBLE)
    fx = SIN(x) + 5
FOR

NEXT

END FUNCTION
well I have no idea that what I am doing.

Pages: [1]