Skip to content
Snippets Groups Projects
Select Git revision
  • 8f3e3495b763ffe8b58590e5dfd37336a625b71d
  • main default protected
  • leveleditor
  • david-author
  • clang-tidy-cleanup
  • architecture-refactoring
  • cleanUpMenus
  • doxygen-cleanup
  • project-structure-refactoring
  • interpolation
  • buildingFeatures
  • win_end_screen
  • helpMenu
  • leveleditor-placement
  • text-rendering
  • updated_unit_contextmenu
  • level-from-commandline
  • unit_contextmenu
  • player
  • engine-scaling
  • clang-tidy
21 results

LevelNameEdit.cpp

Blame
  • PointCloudDataReader.h 581 B
    // Fill out your copyright notice in the Description page of Project Settings.
    
    #pragma once
    
    #include "CoreMinimal.h"
    
    class FPointCloudDataReader
    {
    public:
    	FPointCloudDataReader();
    	~FPointCloudDataReader();
    
    	static bool LoadBytesFromFile(const FString& Filename, TArray<uint8>& OutByteArray);
    	static TArray<FVector> LoadPointCloudData(const FString& Filename);
    	static TArray<int32> LoadFlags(const FString& Filename);
    	static TArray<FVector> NormalizeData(const TArray<FVector>& Data, const FVector& Center, const FVector& Scale, FVector& OutputMix, FVector& OutputMax);
    };