Re: What is a photon

Liste des GroupesRevenir à sp relativity 
Sujet : Re: What is a photon
De : chris.m.thomasson.1 (at) *nospam* gmail.com (Chris M. Thomasson)
Groupes : sci.physics.relativity sci.math
Date : 22. Jun 2025, 20:42:27
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <1039mb3$n647$1@dont-email.me>
References : 1 2 3 4 5 6 7
User-Agent : Mozilla Thunderbird
On 6/22/2025 10:30 AM, Chadrick Speziale wrote:
Chris M. Thomasson wrote:
 
thanks, you are great. Can you post the script, for me to learn, if
allowed in your country, thank you in advance. I like models in physics
and partial differential equations.
>
Well, I am keeping my n-ary field algo secret for now. However, here is
an algorithm of mine that can be considered a little bit similar in a
strange sense, just a touch:
>
https://paulbourke.net/fractals/multijulia
>
Paul was kind enough to give it a go.
 that's too little for me to undrestand. I see no code, no script, whatever
you are using. Then r1 nowhere in the expression, saying that it varies
along a normal distribution, I see no distribution anywhere. Suck my dick
Huh? You don't understand the math? This can be implemented in many different programming languages. You want me to give you some of my code, my field? Mostly C++ and GLSL shader pipelines, then some Python 3 ports. Well, this is not my field code, but some of my wave code. Are you interested?
https://i.ibb.co/HfThrbW4/image.png
______________________
// Fractal Parametric Wave Plotter
void ct_fwave_mpara(
     ct::plot2d& plot,
     unsigned int n,
     ct_complex p0,
     ct_complex p1,
     unsigned int nr
) {
     ct_complex dif = p1 - p0;
     // Build the Fractal wave
     ct_float abase = 1.0 / n;
     ct_float abase_wave = CT_PI * 1 / n;
     for (unsigned int i = 0; i < n; i++)
     {
         ct_float angle = abase * i;
         ct_float angle_wave = abase_wave * i * nr;
         ct_float y_temp = abs(sin(angle_wave)) * 1.0 / nr + (p0.imag() + (dif.imag() * angle));
         // Fractal Wave High
         ct_complex wp0 = {
             p0.real() + (dif.real() * angle),
             y_temp
         };
         // Fractal Wave Low
         ct_complex wp1 = {
             p0.real() + (dif.real() * angle),
             -y_temp
         };
         plot.set_pixelf(wp0, CT_RGBF(1., 1., 0.));
         plot.set_pixelf(wp1, CT_RGBF(0., 1., 1.));
     }
}
// Fractal Parametric Wave Function
void ct_fwave(
     ct::plot2d& plot,
     unsigned int n,
     ct_complex p0,
     ct_complex p1,
     unsigned int nr
) {
     // For every level
     for (unsigned int recur_i = 0; recur_i < n; ++recur_i)
     {
         // Plot the wave
         ct_fwave_mpara(plot, 3072, p0, p1, nr);
         // Compute next wave
         nr = nr * (recur_i + 2);
     }
}
______________________

Date Sujet#  Auteur
1 Jun 25 * What is a photon219bertitaylor
1 Jun 25 +- Re: What is a photon1Maciej Woźniak
1 Jun 25 +* Re: What is a photon123Julio Di Egidio
2 Jun 25 i`* Re: What is a photon122Bertietaylor
2 Jun 25 i +- Re: What is a photon1Jim Pennino
3 Jun 25 i `* Re: What is a photon120Paul.B.Andersen
3 Jun 25 i  +* Re: What is a photon18rhertz
3 Jun 25 i  i+- Re: What is a photon1Lowen Makhurov Pan
4 Jun 25 i  i`* Re: What is a photon16Paul.B.Andersen
4 Jun 25 i  i `* Re: What is a photon15rhertz
4 Jun 25 i  i  `* Re: What is a photon14x
6 Jun 25 i  i   `* Re: What is a photon13Bertitaylor
6 Jun 25 i  i    `* Re: What is a photon12Jan Panteltje
6 Jun 25 i  i     +- Re: What is a photon1Maciej Woźniak
6 Jun 25 i  i     +- Re: What is a photon1Bertitaylor
6 Jun 25 i  i     +* Re: What is a photon3Bertitaylor
7 Jun 25 i  i     i`* Re: What is a photon2Rexford Mozharov
14 Jun 25 i  i     i `- Re: What is a photon1Bertitaylor
6 Jun 25 i  i     +* Re: What is a photon5Julio Di Egidio
6 Jun 25 i  i     i`* Re: What is a photon4Julio Di Egidio
13 Jun 25 i  i     i +* Re: What is a photon2Julio Di Egidio
13 Jun 25 i  i     i i`- Re: What is a photon1Julio Di Egidio
13 Jun 25 i  i     i `- Re: What is a photon1Bertitaylor
6 Jun 25 i  i     `- Re: What is a photon1Rudolph Babetov
3 Jun 25 i  +- Re: What is a photon1Julio Di Egidio
4 Jun 25 i  +* Re: What is a photon99Bertitaylor
4 Jun 25 i  i+* Re: What is a photon87Paul.B.Andersen
4 Jun 25 i  ii+* Re: What is a photon11x
4 Jun 25 i  iii+- Re: What is a photon1Jim Pennino
11 Jun 25 i  iii`* Re: What is a photon9Bertitaylor
13 Jun 25 i  iii `* Re: What is a photon8Paul.B.Andersen
14 Jun 25 i  iii  `* Re: What is a photon7Bertitaylor
14 Jun 25 i  iii   +* Re: What is a photon3Chris M. Thomasson
14 Jun 25 i  iii   i`* Re: What is a photon2Bertitaylor
14 Jun 25 i  iii   i `- Re: What is a photon1Jim Pennino
14 Jun 25 i  iii   `* Re: What is a photon3Chris M. Thomasson
14 Jun 25 i  iii    `* Re: What is a photon2Benaventura Méndez
15 Jun 25 i  iii     `- Re: What is a photon1Chris M. Thomasson
5 Jun 25 i  ii`* Re: What is a photon75bertitaylor
5 Jun 25 i  ii +- Re: What is a photon1Limuel Teterichev
6 Jun 25 i  ii +- Re: What is a photon1Bertitaylor
6 Jun 25 i  ii +* Re: What is a photon12Chris M. Thomasson
6 Jun 25 i  ii i+* Re: What is a photon2Bertitaylor
7 Jun 25 i  ii ii`- Re: What is a photon1Arnulfo Balanovsky
12 Jun 25 i  ii i`* Re: What is a photon9Chris M. Thomasson
12 Jun 25 i  ii i +- Re: What is a photon1Bertitaylor
13 Jun 25 i  ii i `* Re: What is a photon7Cash Matzuev
13 Jun 25 i  ii i  `* Re: What is a photon6Chris M. Thomasson
13 Jun 25 i  ii i   `* Re: What is a photon5Jerimya Bereznevich
14 Jun 25 i  ii i    `* Re: What is a photon4Chris M. Thomasson
14 Jun 25 i  ii i     `* Re: What is a photon3Octavio Vassilopulos
15 Jun 25 i  ii i      `* Re: What is a photon2Chris M. Thomasson
15 Jun 25 i  ii i       `- Re: What is a photon1Chris M. Thomasson
9 Jun 25 i  ii +* Re: What is a photon47Thomas Heger
9 Jun 25 i  ii i`* Re: What is a photon46Bertitaylor
9 Jun 25 i  ii i +- Re: What is a photon1Bertitaylor
11 Jun 25 i  ii i `* Re: What is a photon44Thomas Heger
11 Jun 25 i  ii i  +* Re: What is a photon29J. J. Lodder
11 Jun 25 i  ii i  i+* Re: What is a photon7Jeon Tomanov
12 Jun 25 i  ii i  ii`* Re: What is a photon6Chon Won
13 Jun 25 i  ii i  ii `* Re: What is a photon5Harry Jdakaev
14 Jun 25 i  ii i  ii  `* Re: What is a photon4Mariano Talkov
14 Jun 25 i  ii i  ii   `* Re: What is a photon3Omee Szatmári
15 Jun 25 i  ii i  ii    `* Re: What is a photon2J. J. Lodder
15 Jun 25 i  ii i  ii     `- Re: What is a photon1Rosalino Kalakos
12 Jun 25 i  ii i  i`* Re: What is a photon21Thomas Heger
12 Jun 25 i  ii i  i +- Re: What is a photon1Taber Turkestanov
12 Jun 25 i  ii i  i +- Re: What is a photon1Bertitaylor
12 Jun 25 i  ii i  i +* Re: What is a photon10Paul.B.Andersen
13 Jun 25 i  ii i  i i+* Re: What is a photon8Thomas Heger
13 Jun 25 i  ii i  i ii`* Re: What is a photon7Paul.B.Andersen
13 Jun 25 i  ii i  i ii +- Re: What is a photon1Python
13 Jun 25 i  ii i  i ii +- Re: What is a photon1Levi Avanesyan
14 Jun 25 i  ii i  i ii `* Re: What is a photon4Thomas Heger
14 Jun 25 i  ii i  i ii  `* Re: What is a photon3Paul.B.Andersen
15 Jun 25 i  ii i  i ii   `* Re: What is a photon2Thomas Heger
15 Jun 25 i  ii i  i ii    `- Re: What is a photon1Paul.B.Andersen
13 Jun 25 i  ii i  i i`- Re: What is a photon1Maciej Woźniak
13 Jun 25 i  ii i  i `* Re: What is a photon8Thomas Heger
14 Jun 25 i  ii i  i  +* Re: What is a photon5Paul.B.Andersen
15 Jun 25 i  ii i  i  i`* Re: What is a photon4Thomas Heger
15 Jun 25 i  ii i  i  i `* Re: What is a photon3Paul.B.Andersen
15 Jun 25 i  ii i  i  i  +- Re: What is a photon1Farris Numerov
17 Jun 25 i  ii i  i  i  `- Re: What is a photon1Thomas Heger
30 Jun 25 i  ii i  i  `* Re: What is a photon2Bertitaylor
30 Jun 25 i  ii i  i   `- Re: What is a photon1Jim Pennino
11 Jun 25 i  ii i  +* Re: What is a photon9Laurence Vassilikos
12 Jun 25 i  ii i  i`* Re: What is a photon8Thomas Heger
12 Jun 25 i  ii i  i `* Re: What is a photon7Afif Lew
13 Jun 25 i  ii i  i  `* Re: What is a photon6Thomas Heger
13 Jun 25 i  ii i  i   `* Re: What is a photon5Ladd Hudoleev
14 Jun 25 i  ii i  i    +* Re: What is a photon2Thomas Heger
14 Jun 25 i  ii i  i    i`- Re: What is a photon1Nico Baburkin
15 Jun 25 i  ii i  i    `* Re: What is a photon2Thomas Heger
15 Jun 25 i  ii i  i     `- Re: What is a photon1Chas Balakhovski
12 Jun 25 i  ii i  `* Re: What is a photon5Bertitaylor
12 Jun 25 i  ii i   `* Re: What is a photon4Thomas Heger
12 Jun 25 i  ii i    `* Re: What is a photon3Bertitaylor
13 Jun 25 i  ii i     `* Re: What is a photon2Thomas Heger
15 Jun 25 i  ii i      `- Re: What is a photon1Bertitaylor
10 Jun 25 i  ii `* Re: What is a photon13Paul.B.Andersen
5 Jun 25 i  i`* Re: What is a photon11Thomas Heger
14 Jun 25 i  `- Re: What is a photon1Stefan Ram
1 Jun 25 +- Re: What is a photon1Vladimir Csordás Han
1 Jun 25 +* Re: What is a photon6Richard Hachel
1 Jun 25 +* Re: What is a photon15Richard Hachel
1 Jun 25 +* Re: What is a photon34Chris M. Thomasson
2 Jun 25 +* Re: What is a photon9x
11 Jun 25 +* Re: What is a photon2Jim Pennino
15 Jun 25 +* Re: What is a photon8Paul.B.Andersen
15 Jun 25 +* Re: What is a photon15Bertitaylor
29 Jun 25 `* Re: What is a photon4Bertitaylor

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal