国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

首頁 後端開發(fā) C++ 解釋像耳朵一樣的甜甜圈(最後部分)

解釋像耳朵一樣的甜甜圈(最後部分)

Dec 24, 2024 am 12:26 AM

Explaining donut like ears old Part-Last)

C 的完整程式碼是

#include <math.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>

typedef struct {
    double a1;
    double a2;
    double a3;
} singleRow;

typedef struct {
    singleRow a1;
    singleRow a2;
    singleRow a3;
} Matrix;

singleRow multiply(singleRow m1, Matrix m2) {
    singleRow res;
    res.a1 = m1.a1 * m2.a1.a1 + m1.a2 * m2.a2.a1 + m1.a3 * m2.a3.a1;
    res.a2 = m1.a1 * m2.a1.a2 + m1.a2 * m2.a2.a2 + m1.a3 * m2.a3.a2;
    res.a3 = m1.a1 * m2.a1.a3 + m1.a2 * m2.a2.a3 + m1.a3 * m2.a3.a3;
    return res;
}

int main() {
  int screen_width = 80, height = 22;
  char buffer[1760];
  float zBuffer[1760];
  float A = 0, B = 0;
  int R2 = 2, R1 = 1;
  printf("\x1b[2J");
  while (1) {
    memset(buffer, ' ', 1760);
    memset(zBuffer, 0, 7040);
      for (float theta = 0; theta < 6.28; theta += 0.07) {
        for (float phi = 0; phi < 6.28; phi += 0.02) {
          singleRow circle = {2 + cos(theta), sin(theta), 0};
          // rotation on Y-axis
          Matrix Ry = {{cos(phi), 0, sin(phi)}, {0, 1, 0}, {-sin(phi), 0, cos(phi)}};
          // rotation on X-axis
          Matrix Rx = {{1, 0, 0}, {0, cos(A), sin(A)}, {0, -sin(A), cos(A)}};
          // rotation on Z-axis
          Matrix Rz = {{cos(B), sin(B), 0}, {-sin(B), cos(B), 0}, {0, 0, 1}};

          singleRow donut = multiply(circle, Ry);
          singleRow rotateX = multiply(donut, Rx);
          // We will consider it as [Nx, Ny, Nz]
          singleRow spinningDonut = multiply(rotateX, Rz);
          float reciNz = 1 / (spinningDonut.a3 + 5);

          int x = 40 + 30 * spinningDonut.a1 * reciNz;
          int y = 12 + 15 * spinningDonut.a2 * reciNz;

          // o is index of current buffer
          int o = x + screen_width * y;

          int L = 8 * (spinningDonut.a2 - spinningDonut.a3 + 2 * cos(B) * sin(A) * sin(phi)
            - 2 * cos(phi) * cos(theta) * sin(B)
            - 2 * cos(phi) * sin(B)
            + 2 * cos(A) * sin(phi)
          );

          // donut luminicity will be seen by these characters
          // these 12
          char charOut[] = ".,-~:;=!*#$@";

          if (x < screen_width && y < height && zBuffer[o] < reciNz) {
            zBuffer[o] = reciNz;
            // If L < 0, . will be buffer
            buffer[o] = charOut[L > 0 ? L : 0];
          }
        }
      }
    // Clear screen
    printf("\x1b[H");
    for (int i = 0; i <1761; i++) {
      // On every 80th character, new line will be printed
      // If there's a reminder then buffer printed
      putchar(i % 80 ? buffer[i] : 10);
      A += 0.00004;
      B += 0.00002;
    }
    // Timer to slow down speed a bit
    usleep(10000);
  }
  return 0;
}

Java的完整程式碼是

import java.util.Arrays;

class singleRow {
  public double a1;
  public double a2;
  public double a3;
  public singleRow(double a1, double a2, double a3) {
    this.a1 = a1;
    this.a2 = a2;
    this.a3 = a3;
  }
}
class Matrix {
  public singleRow a1;
  public singleRow a2;
  public singleRow a3;
  public Matrix(singleRow a1, singleRow a2, singleRow a3) {
    this.a1 = new singleRow(a1.a1, a1.a2, a1.a3);
    this.a2 = new singleRow(a2.a1, a2.a2, a2.a3);
    this.a3 = new singleRow(a3.a1, a3.a2, a3.a3);
  }
  public static singleRow multiply(singleRow m1, Matrix m2) {
    singleRow res = new singleRow(0, 0, 0);
    res.a1 = (m1.a1 * m2.a1.a1) + (m1.a2 * m2.a2.a1) + (m1.a3 * m2.a3.a1);
    res.a2 = (m1.a1 * m2.a1.a2) + (m1.a2 * m2.a2.a2) + (m1.a3 * m2.a3.a2);
    res.a3 = (m1.a1 * m2.a1.a3) + (m1.a2 * m2.a2.a3) + (m1.a3 * m2.a3.a3);
    return res;
  }
}


public class Main {
public static void main() {
  int screen_width = 80, height = 22;
  char[] buffer = new char[1760];
  double[] zBuffer = new double[1760];
  double A = 0, B = 0;
  int R2 = 2, R1 = 1;
  System.out.print("\u001b[2J");
  while (true) {
    Arrays.fill(buffer, 0, 1760, ' ');
    Arrays.fill(zBuffer, 0, 1760, 0);
      for (float theta = 0; theta < 6.28; theta += 0.07) {
        for (float phi = 0; phi < 6.28; phi += 0.02) {
          singleRow circle = {2 + Math.cos(theta), Math.sin(theta), 0};
          // rotation on Y-axis
          Matrix Ry = new Matrix(
          new singleRow(Math.cos(phi), 0, Math.sin(phi)),
          new singleRow(0, 1, 0),
          new singleRow(-Math.sin(phi), 0, Math.cos(phi))
        );
        // rotation on X-axis
        Matrix Rx = new Matrix(
          new singleRow(1, 0, 0),
          new singleRow(0, Math.cos(A), Math.sin(A)),
          new singleRow(0, -Math.sin(A), Math.cos(A))
        );
        // rotation on Z-axis
        Matrix Rz = new Matrix(
          new singleRow(Math.cos(B), Math.sin(B), 0),
          new singleRow(-Math.sin(B), Math.cos(B), 0),
          new singleRow(0, 0, 1)
        );

          singleRow donut = Matrix.multiply(circle, Ry);
          singleRow rotateX = Matrix.multiply(donut, Rx);
          // We will consider it as [Nx, Ny, Nz]
          singleRow spinningDonut = Matrix.multiply(rotateX, Rz);
          float reciNz = 1 / (spinningDonut.a3 + 5);

          int x = 40 + 30 * spinningDonut.a1 * reciNz;
          int y = 12 + 15 * spinningDonut.a2 * reciNz;

          // o is index of current buffer
          int o = x + screen_width * y;

          int L = 8 * (spinningDonut.a2 - spinningDonut.a3 
            + 2 * Math.cos(B) * Math.sin(A) * Math.sin(phi)
            - 2 * Math.cos(phi) * Math.cos(theta) * Math.sin(B)
            - 2 * Math.cos(phi) * Math.sin(B)
            + 2 * Math.cos(A) * Math.sin(phi)
          );

          // donut luminicity will be seen by these characters
          // these 12
          char[] charOpts = {'.', ',', '-', '~', ':', ';', '=', '!', '*', '#', '$', '@'};

          if (x < screen_width && y < height && zBuffer[o] < reciNz) {
            zBuffer[o] = reciNz;
            // If L < 0, . will be buffer
            buffer[o] = charOut[L > 0 ? L : 0];
          }
        }
      }
    // Clear screen
    System.out.print("\u001b[H");
    for (int i = 0; i <1761; i++) {
      // On every 80th character, new line will be printed
      // If there's a reminder then buffer printed
      System.out.print(i % 80 ? buffer[i] : 10);
      A += 0.00004;
      B += 0.00002;
    }
  }
}
}

以上是解釋像耳朵一樣的甜甜圈(最後部分)的詳細內容。更多資訊請關注PHP中文網(wǎng)其他相關文章!

本網(wǎng)站聲明
本文內容由網(wǎng)友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發(fā)現(xiàn)涉嫌抄襲或侵權的內容,請聯(lián)絡admin@php.cn

熱AI工具

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創(chuàng)建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱工具

記事本++7.3.1

記事本++7.3.1

好用且免費的程式碼編輯器

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

禪工作室 13.0.1

禪工作室 13.0.1

強大的PHP整合開發(fā)環(huán)境

Dreamweaver CS6

Dreamweaver CS6

視覺化網(wǎng)頁開發(fā)工具

SublimeText3 Mac版

SublimeText3 Mac版

神級程式碼編輯軟體(SublimeText3)

c多態(tài)性:功能是否超載一種多態(tài)性? c多態(tài)性:功能是否超載一種多態(tài)性? Jun 20, 2025 am 12:05 AM

是的,函數(shù)重載是C 中的一種多態(tài)形式,具體來說是編譯時多態(tài)。 1.函數(shù)重載允許使用相同名稱但不同參數(shù)列表的多個函數(shù)。 2.編譯器根據(jù)提供的參數(shù)在編譯時決定調用哪個函數(shù)。 3.與運行時多態(tài)不同,函數(shù)重載在運行時沒有額外開銷,實現(xiàn)簡單,但靈活性較低。

C中有哪種多態(tài)性的多態(tài)性?解釋了 C中有哪種多態(tài)性的多態(tài)性?解釋了 Jun 20, 2025 am 12:08 AM

C 有兩種主要的多態(tài)類型:編譯時多態(tài)和運行時多態(tài)。 1.編譯時多態(tài)通過函數(shù)重載和模板實現(xiàn),提供高效但可能導致代碼膨脹。 2.運行時多態(tài)通過虛函數(shù)和繼承實現(xiàn),提供靈活性但有性能開銷。

C:多態(tài)性真的有用嗎? C:多態(tài)性真的有用嗎? Jun 20, 2025 am 12:01 AM

是的,C 中的多態(tài)性非常有用。1)它提供了靈活性,允許輕松添加新類型;2)促進代碼重用,減少重復;3)簡化維護,使代碼更易擴展和適應變化。盡管存在性能和內存管理的挑戰(zhàn),但其優(yōu)勢在復雜系統(tǒng)中尤為顯著。

C驅動器:常見錯誤 C驅動器:常見錯誤 Jun 20, 2025 am 12:12 AM

C destructorscanleadtoseveralcommonerrors.Toavoidthem:1)Preventdoubledeletionbysettingpointerstonullptrorusingsmartpointers.2)Handleexceptionsindestructorsbycatchingandloggingthem.3)Usevirtualdestructorsinbaseclassesforproperpolymorphicdestruction.4

c認識python的人的教程 c認識python的人的教程 Jul 01, 2025 am 01:11 AM

學Python的人轉學C 最直接的困惑是:為什麼不能像Python那樣寫?因為C 雖然語法更複雜,但提供了底層控制能力和性能優(yōu)勢。 1.語法結構上,C 使用花括號{}而非縮進組織代碼塊,且變量類型必須顯式聲明;2.類型系統(tǒng)與內存管理方面,C 沒有自動垃圾回收機制,需手動管理內存並註意釋放資源,使用RAII技術可輔助資源管理;3.函數(shù)與類定義中,C 需要明確訪問修飾符、構造函數(shù)和析構函數(shù),並支持如運算符重載等高級功能;4.標準庫方面,STL提供了強大的容器和算法,但需要適應泛型編程思想;5

C中的多態(tài)性:綜合指南 C中的多態(tài)性:綜合指南 Jun 21, 2025 am 12:11 AM

C 中的多態(tài)性分為運行時多態(tài)性和編譯時多態(tài)性。 1.運行時多態(tài)性通過虛函數(shù)實現(xiàn),允許在運行時動態(tài)調用正確的方法。 2.編譯時多態(tài)性通過函數(shù)重載和模板實現(xiàn),提供更高的性能和靈活性。

C中的多態(tài)性的各種形式是什麼? C中的多態(tài)性的各種形式是什麼? Jun 20, 2025 am 12:21 AM

C polymorphismincludescompile-time,runtime,andtemplatepolymorphism.1)Compile-timepolymorphismusesfunctionandoperatoroverloadingforefficiency.2)Runtimepolymorphismemploysvirtualfunctionsforflexibility.3)Templatepolymorphismenablesgenericprogrammingfo

C多態(tài)性:編碼樣式 C多態(tài)性:編碼樣式 Jun 19, 2025 am 12:25 AM

C polymorphismisuniqueduetoitscombinationofcompile-timeandruntimepolymorphism,allowingforbothefficiencyandflexibility.Toharnessitspowerstylishly:1)Usesmartpointerslikestd::unique_ptrformemorymanagement,2)Ensurebaseclasseshavevirtualdestructors,3)Emp

See all articles