banner_image ×
SeaArt AI Enterprise Version
Explore
More
Rankings
Blog
News
Guides
Download app
Swift AI
Official
Community
Train

A close up of a camera lens with a circular design

import numpy as np
import matplotlib.pyplot as plt 
from mpl_toolkits.mplot3d import Axes3D  
# 参数设置
n = 1
pi = np.pi  
# 时空坐标计算
def spacetime_coordinates(t):
    r = n / pi * t
    x = r * np.cos(t) * np.cos(t)
    y = r * np.sin(t) * np.cos(t)
    z = r * np.sin(t)
    w = r
    return x, y, z, w
  # 量子场与概率 
def quantum_field(t, m):
    u_n_minus_1 = 0
  # 假设u_n-1为0,可根据实际情况修改
    u = u_n_minus_1 + np.sin(t + m)
    return u
  # 概率分布 
def probability_distribution():
    m_values = [0, 1 / 2 * pi, pi, 3 / 2 * pi]
    probabilities = [0.125, 0.125, 0.125, 0.125, 0.5]
    m = np.random.choice(m_values + [0], p=probabilities)
    return m
  # 计算时空坐标和量子场值
    t_values = np.linspace(0, 2 * pi, 100)
    coordinates = [spacetime_coordinates(t) for t in t_values]
    quantum_fields = [quantum_field(t, probability_distribution()) for t in t_values]
  # 绘制3D曲面 def plot_3d_surface(w_value):
    fig = plt.figure()
    ax = fig.add_subplot(111, projection='3d')
    x_values = []
    y_values = []
    z_values = []
    u_values = []
    for coord, field in zip(coordinates, quantum_fields):
             x, y, z, w = coord
    if w == w_value:
             x_values.append(x)
             y_values.append(y)
             z_values.append(z)
             u_values.append(field)
             ax.scatter(x_values, y_values, z_values, c=u_values, cmap='viridis')
             ax.set_xlabel('X')
             ax.set_ylabel('Y')
             ax.set_zlabel('Z')
             ax.set_title(f'3D Surface for w = {w_value}')
             plt.show()
             plot_3d_surface(1)
             plot_3d_surface(100)
             input("Press any key to exit") --auto
chatIcon
I've got special thoughts today, perfect for our chat.
Create AI Character
image

import numpy as np import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D # 参数设置 n = 1 pi = np.pi # 时空坐标计算 def spacetime_coordinates(t): r = n / pi * t x = r * np.cos(t) * np.cos(t) y = r * np.sin(t) * np.cos(t) z = r * np.sin(t) w = r return x, y, z, w # 量子场与概率 def quantum_field(t, m): u_n_minus_1 = 0 # 假设u_n-1为0,可根据实际情况修改 u = u_n_minus_1 + np.sin(t + m) return u # 概率分布 def probability_distribution(): m_values = [0, 1 / 2 * pi, pi, 3 / 2 * pi] probabilities = [0.125, 0.125, 0.125, 0.125, 0.5] m = np.random.choice(m_values + [0], p=probabilities) return m # 计算时空坐标和量子场值 t_values = np.linspace(0, 2 * pi, 100) coordinates = [spacetime_coordinates(t) for t in t_values] quantum_fields = [quantum_field(t, probability_distribution()) for t in t_values] # 绘制3D曲面 def plot_3d_surface(w_value): fig = plt.figure() ax = fig.add_subplot(111, projection='3d') x_values = [] y_values = [] z_values = [] u_values = [] for coord, field in zip(coordinates, quantum_fields): x, y, z, w = coord if w == w_value: x_values.append(x) y_values.append(y) z_values.append(z) u_values.append(field) ax.scatter(x_values, y_values, z_values, c=u_values, cmap='viridis') ax.set_xlabel('X') ax.set_ylabel('Y') ax.set_zlabel('Z') ax.set_title(f'3D Surface for w = {w_value}') plt.show() plot_3d_surface(1) plot_3d_surface(100) input("Press any key to exit") --auto

avatar
P
pang ping
Prompts
Copy
import numpy as np import matplotlib . pyplot as plt from mpl_toolkits . mplot3d import Axes3D # 参数设置 n = 1 pi = np . pi # 时空坐标计算 def spacetime_coordinates(t): r = n / pi * t x = r * np . cos(t) * np . cos(t) y = r * np . sin(t) * np . cos(t) z = r * np . sin(t) w = r return x , y , z , w # 量子场与概率 def quantum_field(t , m): u_n_minus_1 = 0 # 假设u_n-1为0 , 可根据实际情况修改 u = u_n_minus_1 + np . sin(t + m) return u # 概率分布 def probability_distribution(): m_values = [0 , 1 / 2 * pi , pi , 3 / 2 * pi] probabilities = [0 . 125 , 0 . 125 , 0 . 125 , 0 . 125 , 0 . 5] m = np . random . choice(m_values + [0] , p=probabilities) return m # 计算时空坐标和量子场值 t_values = np . linspace(0 , 2 * pi , 100) coordinates = [spacetime_coordinates(t) for t in t_values] quantum_fields = [quantum_field(t , probability_distribution()) for t in t_values] # 绘制3D曲面 def plot_3d_surface(w_value): fig = plt . figure() ax = fig . add_subplot(111 , projection='3d') x_values = [] y_values = [] z_values = [] u_values = [] for coord , field in zip(coordinates , quantum_fields): x , y , z , w = coord if w == w_value: x_values . append(x) y_values . append(y) z_values . append(z) u_values . append(field) ax . scatter(x_values , y_values , z_values , c=u_values , cmap='viridis') ax . set_xlabel('X') ax . set_ylabel('Y') ax . set_zlabel('Z') ax . set_title(f'3D Surface for w = {w_value}') plt . show() plot_3d_surface(1) plot_3d_surface(100) input("Press any key to exit") --auto
INFO
Prompts
import numpy as np import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D # 参数设置 n = 1 pi = np.pi # 时空坐标计算 def spacetime_coordinates(t): r = n / pi * t x = r * np.cos(t) * np.cos(t) y = r * np.sin(t) * np.cos(t) z = r * np.sin(t) w = r return x, y, z, w # 量子场与概率 def quantum_field(t, m): u_n_minus_1 = 0 # 假设u_n-1为0,可根据实际情况修改 u = u_n_minus_1 + np.sin(t + m) return u # 概率分布 def probability_distribution(): m_values = [0, 1 / 2 * pi, pi, 3 / 2 * pi] probabilities = [0.125, 0.125, 0.125, 0.125, 0.5] m = np.random.choice(m_values + [0], p=probabilities) return m # 计算时空坐标和量子场值 t_values = np.linspace(0, 2 * pi, 100) coordinates = [spacetime_coordinates(t) for t in t_values] quantum_fields = [quantum_field(t, probability_distribution()) for t in t_values] # 绘制3D曲面 def plot_3d_surface(w_value): fig = plt.figure() ax = fig.add_subplot(111, projection='3d') x_values = [] y_values = [] z_values = [] u_values = [] for coord, field in zip(coordinates, quantum_fields): x, y, z, w = coord if w == w_value: x_values.append(x) y_values.append(y) z_values.append(z) u_values.append(field) ax.scatter(x_values, y_values, z_values, c=u_values, cmap='viridis') ax.set_xlabel('X') ax.set_ylabel('Y') ax.set_zlabel('Z') ax.set_title(f'3D Surface for w = {w_value}') plt.show() plot_3d_surface(1) plot_3d_surface(100) input("Press any key to exit") --auto
Negative Prompts
(nsfw:1.5),verybadimagenegative_v1.3, ng_deepnegative_v1_75t, (ugly face:0.8),cross-eyed,sketches, (worst quality:2), (low quality:2), (normal quality:2), lowres, normal quality, ((monochrome)), ((grayscale)), skin spots, acnes, skin blemishes, bad anatomy, DeepNegative, facing away, tilted head, {Multiple people}, lowres, bad anatomy, bad hands, text, error, missing fingers, extra digit, fewer digits, cropped, worstquality, low quality, normal quality, jpegartifacts, signature, watermark, username, blurry, bad feet, cropped, poorly drawn hands, poorly drawn face, mutation, deformed, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, extra fingers, fewer digits, extra limbs, extra arms,extra legs, malformed limbs, fused fingers, too many fingers, long neck, cross-eyed,mutated hands, polar lowres, bad body, bad proportions, gross proportions, text, error, missing fingers, missing arms, missing legs, extra digit, extra arms, extra leg, extra foot, ((repeating hair))
CFG Scale
5
Steps
30
Sampler
DPM++ 2M Karras
Seed
-1
Clip Skip
Image Size
2048 X 2048
Denoising Strength
0.2
Model
ReV Animated
Generate
Size
2048X2048
Date
Jul 5, 2023
Mode
Default
Type
upscale
Checkpoint & LoRA
ReV Animated
Checkpoint
ReV Animated
#Realistic Babe
#Portrait
#abstract
0 comment
0
0
0

SeaArt Swift AI Apps

ai_video_generationimg
AI Video Generation

Unleash your imagination and let AI create visual wonders for you

face_swap_titleimg
Face Swap Online Free

Create funny or realistic face swap videos & photos in a snap

cartoon_avatar_h1img
Cartoon Avatar Maker

Turn your photos into unique cartoon avatars instantly.

wanimg2vid_h1img
Wan 2.1 Image to Video

Animate photos with realistic motion and cinematic effects.

ai_eraserimg
AI Eraser

Easily remove unwanted objects, watermarks, or people from your photos.

ghibli_filter_h1img
Studio Ghibli Filter

Transform any photo into unique Ghibli-style art in just one click.

Explore More AI Apps 

Explore Related

ControlNet
avatar
P
PotatoFromHell
0
1
ControlNet
avatar
C
chosen
0
0
ControlNet
avatar
P
PotatoFromHell
0
0
ControlNet
avatar
C
chosen
0
0
ControlNet
avatar
K
KMGOZ0
0
0
ControlNet
avatar
C
chosen
0
0
ControlNet
avatar
K
KMGOZ0
0
0
ControlNet
avatar
S
Shogo
0
0
ControlNet
avatar
W
wheel drive
0
0
ControlNet
avatar
C
Christian Sánchez Blasquez
0
0
ControlNet
avatar
Z
zakp
0
0
ControlNet
avatar
太
太初
0
1
ControlNet
avatar
C
chosen
0
1
ControlNet
avatar
C
chosen
0
1
ControlNet
avatar
D
Dylan
0
1
ControlNet
avatar
C
CQF
0
1
ControlNet
avatar
R
Ravi Kumar
0
0
ControlNet
avatar
C
chosen
0
0
ControlNet
avatar
牧
牧野留姬
0
0
ControlNet
avatar
A
Alfiandri Sugest4
0
0
ControlNet
avatar
C
chosen
0
1
ControlNet
avatar
T
Trabalho Stark
0
0
ControlNet
avatar
I
Ianis Moise
1
1
ControlNet
avatar
L
lrzjason
0
0
ControlNet
avatar
D
David Hodara
0
2
ControlNet
avatar
P
PotatoFromHell
0
0
ControlNet
avatar
H
Hua
0
0
ControlNet
avatar
C
chosen
0
0
ControlNet
avatar
D
DonMischo
0
1
ControlNet
avatar
裁
裁决
0
3
ControlNet
avatar
C
chosen
0
0
ControlNet
avatar
W
Wick_J4
0
0
ControlNet
avatar
E
emyllediasking
0
1
ControlNet
avatar
S
Stoke
0
0
ControlNet
avatar
E
Ever Peñate
1
1
ControlNet
logo
English
Application
Create Image AI Characters Swift AI Model Training Canvas AI Apps Workflow
About
Studio Rankings AI Chat AI Blog AI News
Help
Guides Customer Service
Get App
icon
Download on the
APP Store
icon
GET IT ON
Google Play
Follow Us
iconiconiconiconiconiconicon
© 2025 SeaArt, Inc.
Copyright Policy
Terms
Privacy 特定商取引法 資金決済法に基づく表示
Event Center
Rankings
Blog
News
Copyright Policy Terms Privacy 特定商取引法 資金決済法に基づく表示
Guides
Feedback
Download app
More