English
Source / code snippets

strain-Kollision in a plain detect, crossroads detektieren

 

p.specht

XProfan11.2a free's @between functions as Kollisionserkennung only, if Maximal- and Minimalwerte mathematically correctly on The pretended Parameterstellen staid go. in the nachfolgenden Program determined the 'Touch' getaufte filter The compel values self.
'----------------------------------------------------------
' Kollision zweier through your Endpunkte given strain
' The Schnittpunkt the pertinent Geraden becomes determined,
' but only then drawn, if itself 'The sound kreuzen'.
'----------------------------------------------------------
' Freeware as demonstration, 2012-05 by Zorro woodpecker, Wien
' Use on alleinige menace the Anwenders/the Anwenderin!
'----------------------------------------------------------
Windowstyle 16 | 64
Window 0,0-%maxx,%maxy-44
font 2:set("decimals",1):set("numwidth",6)
screen 800*2,680
var xm!= %maxx/2
var ym!=(%maxy-44)/2
var f!=pi()/180
declare w&,w!,d!' Winkel in strain & wheel, fat
declare xo!,xu!,yo!,yu!,xo2!,xu2!,yo2!,yu2!'Streckenfilter
declare x!,y!,tmp!
declare x1!,y1!, x2!,y2!, x3!,y3!, x4!,y4!
declare k2!,m2!, k4!,m4!, denominator!,r!
r!=100' Zorros Rumfuchtel-reach ;-)
' 2-spots-straight g1
x1!=0:y1!=0'Dummy. P1 and P4 later winkelgesteuert
x2!=-150:y2!=11
' 2-spots-straight g2
x3!= 80:y3!=-80
x4!= 60:y4!=30
Begin:

whileloop 0,360,6

    w&=&Loop:w!=f!*w&
    waitinput 60
    case %key=27:end
    x1!=2*r!*cos(w!):y1!=r!*sin(-w!*2)
    x4!=r!*cos(3.4*-w!):y4!=2*r!*sin(2*w!)
    k2!=x2!-x1! : m2!=y2!-y1!
    k4!=x4!-x3! : m4!=y4!-y3!
    denominator! = k2!*m4! - k4!*m2!

    if denominator!<>0

        x!=( k2!*(x3!*y4!-x4!*y3!)+k4!*(x2!*y1!-x1!*y2!) ) / denominator!

        if k2!<>0

            y!=m2!/k2!*(x!-x1!)+y1!

        endif

    endif

    ' Graphics
    cls
    Lin x2!,y2!, x1!,y1! ,2
    Lin x4!,y4!, x3!,y3! ,2

    if touch()

        beep
        Pnt x!,y!,3

    endif

endwhile

goto "Begin"

proc Lin

    parameters x2!,y2!,x1!,y1!,d!
    usepen 0,d!,rgb(200,0,0)
    Line xm!+x2!,(ym!-y2!) - (xm!+x1!),ym!-y1!

endproc

proc Pnt:parameters x!,y!,d!

    usepen 0,d!,rgb(200,0,0)
    rectangle xm!+x!+2+d!,(ym!-y!+2+d!) - (xm!+x!-2-d!),ym!-y!-2-d!

endproc

proc touch

    var tmp&=0
    xo!=-1*10^30
    case x1!>xo!:xo!=x1!
    case x2!>xo!:xo!=x2!
    case x3!>xo!:xo!=x3!
    case x4!>xo!:xo!=x4!
    xu!=10^30
    case x1!>xo!:xo!=x1!
    case x2!<xu!:xu!=x2!
    case x3!<xu!:xu!=x3!
    case x4!<xu!:xu!=x4!
    xo2!=-1*10^30
    case (x1!<xo!) and (xo2!<x1!):xo2!=x1!
    case (x2!<xo!) and (xo2!<x2!):xo2!=x2!
    case (x3!<xo!) and (xo2!<x3!):xo2!=x3!
    case (x4!<xo!) and (xo2!<x4!):xo2!=x4!
    xu2!=10^30
    case (x1!>xu!) and (xu2!>x1!):xu2!=x1!
    case (x2!>xu!) and (xu2!>x2!):xu2!=x2!
    case (x3!>xu!) and (xu2!>x3!):xu2!=x3!
    case (x4!>xu!) and (xu2!>x4!):xu2!=x4!
    yo!=-1*10^30
    case y1!>yo!:yo!=y1!
    case y2!>yo!:yo!=y2!
    case y3!>yo!:yo!=y3!
    case y4!>yo!:yo!=y4!
    yu!=10^30
    case y2!<yu!:yu!=y2!
    case y3!<yu!:yu!=y3!
    case y4!<yu!:yu!=y4!
    yo2!=-1*10^30
    case (y1!<yo!) and (yo2!<y1!):yo2!=y1!
    case (y2!<yo!) and (yo2!<y2!):yo2!=y2!
    case (y3!<yo!) and (yo2!<y3!):yo2!=y3!
    case (y4!<yo!) and (yo2!<y4!):yo2!=y4!
    yu2!=10^30
    case (y1!>yu!) and (yu2!>y1!):yu2!=y1!
    case (y2!>yu!) and (yu2!>y2!):yu2!=y2!
    case (y3!>yu!) and (yu2!>y3!):yu2!=y3!
    case (y4!>yu!) and (yu2!>y4!):yu2!=y4!
    locate 5,0:print xo!,xo2!,x1!,xu2!,xu!:print yo!,yo2!,y1!,yu2!,yu!
    case (x!>=xu2!) and (x!<=xo2!) and (y!>=yu2!) and (y!<=yo2!):tmp&=1
    return tmp&

endproc

 
XProfan 11
Computer: Gerät, daß es in Mikrosekunden erlaubt, 50.000 Fehler zu machen, zB 'daß' statt 'das'...
04/25/21  
 



Zum Quelltext


Topictitle, max. 100 characters.
 

Systemprofile:

no Systemprofil laid out. [anlegen]

XProfan:

 Posting  Font  Smilies  ▼ 

Please register circa a Posting To verfassen.
 

Topic-Options

584 Views

Untitledvor 0 min.
N.Art07/21/22
Ernst07/21/21
Uwe ''Pascal'' Niemeier06/13/21
R.Schneider05/28/21
More...

Themeninformationen

this Topic has 1 subscriber:

p.specht (1x)


Admins  |  AGB  |  Applications  |  Authors  |  Chat  |  Privacy Policy  |  Download  |  Entrance  |  Help  |  Merchantportal  |  Imprint  |  Mart  |  Interfaces  |  SDK  |  Services  |  Games  |  Search  |  Support

One proposition all XProfan, The there's!


My XProfan
Private Messages
Own Storage Forum
Topics-Remember-List
Own Posts
Own Topics
Clipboard
Log off
 Deutsch English Français Español Italia
Translations

Privacy Policy


we use Cookies only as Session-Cookies because of the technical necessity and with us there no Cookies of Drittanbietern.

If you here on our Website click or navigate, stimmst You ours registration of Information in our Cookies on XProfan.Net To.

further Information To our Cookies and moreover, How You The control above keep, find You in ours nachfolgenden Datenschutzerklärung.


all rightDatenschutzerklärung
i want none Cookie